diff --git a/README.md b/README.md index 970876b..1005621 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Go-MC -![Version](https://img.shields.io/badge/Minecraft-1.16.2-blue.svg) -![Protocol](https://img.shields.io/badge/Protocol-751-blue.svg) +![Version](https://img.shields.io/badge/Minecraft-1.16.3-blue.svg) +![Protocol](https://img.shields.io/badge/Protocol-753-blue.svg) [![GoDoc](https://godoc.org/github.com/Tnze/go-mc?status.svg)](https://godoc.org/github.com/Tnze/go-mc) [![Go Report Card](https://goreportcard.com/badge/github.com/Tnze/go-mc)](https://goreportcard.com/report/github.com/Tnze/go-mc) [![Build Status](https://travis-ci.org/Tnze/go-mc.svg?branch=master)](https://travis-ci.org/Tnze/go-mc) @@ -105,4 +105,4 @@ Originally it's all right to write a bot with only `go-mc/net` package. But cons 理论上讲,只用`go-mc/net`包实现一个bot是完全可行的,但是为了节省大家从头去理解MC握手、登录、加密等协议的过程,在`go-mc/bot`中我已经把这些都实现了,只不过它不是跨版本的。你可以直接使用,或者作为自己实现的参考。 -Now, go and have a look at the example! +Now, go and have a look at the example! diff --git a/bot/client.go b/bot/client.go index fdff6c1..6f7e69d 100644 --- a/bot/client.go +++ b/bot/client.go @@ -1,10 +1,18 @@ package bot import ( + "sync" + "time" + + "github.com/Tnze/go-mc/bot/path" + "github.com/Tnze/go-mc/bot/phy" "github.com/Tnze/go-mc/bot/world" "github.com/Tnze/go-mc/bot/world/entity" "github.com/Tnze/go-mc/bot/world/entity/player" + "github.com/Tnze/go-mc/data" "github.com/Tnze/go-mc/net" + "github.com/Tnze/go-mc/net/packet" + pk "github.com/Tnze/go-mc/net/packet" ) // Client is used to access Minecraft server @@ -14,14 +22,35 @@ type Client struct { player.Player PlayInfo + ServInfo abilities PlayerAbilities settings Settings - Wd world.World //the map data + + Wd world.World //the map data + Inputs path.Inputs + Physics phy.State + lastPosTx time.Time + justTeleported bool // Delegate allows you push a function to let HandleGame run. // Do not send at the same goroutine! Delegate chan func() error Events eventBroker + + closing chan struct{} + inbound chan pk.Packet + wg sync.WaitGroup +} + +func (c *Client) Close() error { + close(c.closing) + err := c.disconnect() + c.wg.Wait() + return err +} + +func (c *Client) SendCloseWindow(windowID byte) error { + return c.conn.WritePacket(packet.Marshal(data.CloseWindowServerbound, pk.UnsignedByte(windowID))) } // NewClient init and return a new Client. @@ -31,34 +60,37 @@ type Client struct { // // For online-mode, you need login your Mojang account // and load your Name, UUID and AccessToken to client. -func NewClient() (c *Client) { - c = new(Client) - - //init Client - c.settings = DefaultSettings - c.Name = "Steve" - c.Delegate = make(chan func() error) - - c.Wd = world.World{ - Entities: make(map[int32]entity.Entity), - Chunks: make(map[world.ChunkLoc]*world.Chunk), +func NewClient() *Client { + return &Client{ + settings: DefaultSettings, + Auth: Auth{Name: "Steve"}, + Delegate: make(chan func() error), + Wd: world.World{ + Entities: make(map[int32]*entity.Entity, 8192), + Chunks: make(map[world.ChunkLoc]*world.Chunk, 2048), + }, + closing: make(chan struct{}), + inbound: make(chan pk.Packet, 5), } - - return } //PlayInfo content player info in server. type PlayInfo struct { - Gamemode int //游戏模式 - Hardcore bool //是否是极限模式 - Dimension int //维度 - Difficulty int //难度 - ViewDistance int //视距 - ReducedDebugInfo bool //减少调试信息 - WorldName string //当前世界的名字 - IsDebug bool //调试 - IsFlat bool //超平坦世界 - // SpawnPosition Position //主世界出生点 + Gamemode int //游戏模式 + Hardcore bool //是否是极限模式 + Dimension int //维度 + Difficulty int //难度 + ViewDistance int //视距 + ReducedDebugInfo bool //减少调试信息 + WorldName string //当前世界的名字 + IsDebug bool //调试 + IsFlat bool //超平坦世界 + SpawnPosition Position //主世界出生点 +} + +// ServInfo contains information about the server implementation. +type ServInfo struct { + Brand string } // PlayerAbilities defines what player can do. diff --git a/bot/event.go b/bot/event.go index a34c280..71fa11f 100644 --- a/bot/event.go +++ b/bot/event.go @@ -2,13 +2,38 @@ package bot import ( "github.com/Tnze/go-mc/bot/world/entity" + "github.com/Tnze/go-mc/bot/world/entity/player" "github.com/Tnze/go-mc/chat" "github.com/google/uuid" pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/net/ptypes" +) + +type seenPacketFlags uint8 + +// Valid seenPacketFlags values. +const ( + seenJoinGame seenPacketFlags = 1 << iota + seenServerDifficulty + seenPlayerAbilities + seenPlayerInventory + seenUpdateLight + seenChunkData + seenPlayerPositionAndLook + seenSpawnPos + + // gameReadyMinPackets are the minimum set of packets that must be seen, for + // the GameReady callback to be invoked. + gameReadyMinPackets = seenJoinGame | seenChunkData | seenUpdateLight | + seenPlayerAbilities | seenPlayerInventory | seenServerDifficulty | + seenPlayerPositionAndLook | seenSpawnPos ) type eventBroker struct { + seenPackets seenPacketFlags + isReady bool + GameStart func() error ChatMsg func(msg chat.Message, pos byte, sender uuid.UUID) error Disconnect func(reason chat.Message) error @@ -17,6 +42,7 @@ type eventBroker struct { SoundPlay func(name string, category int, x, y, z float64, volume, pitch float32) error PluginMessage func(channel string, data []byte) error HeldItemChange func(slot int) error + OpenWindow func(pkt ptypes.OpenWindow) error // ExperienceChange will be called every time player's experience level updates. // Parameters: @@ -25,10 +51,39 @@ type eventBroker struct { // total - total amount of experience received from level 0. ExperienceChange func(bar float32, level int32, total int32) error - WindowsItem func(id byte, slots []entity.Slot) error - WindowsItemChange func(id byte, slotID int, slot entity.Slot) error + WindowsItem func(id byte, slots []entity.Slot) error + WindowsItemChange func(id byte, slotID int, slot entity.Slot) error + WindowConfirmation func(pkt ptypes.ConfirmTransaction) error - // ReceivePacket will be called when new packet arrive. - // Default handler will run only if pass == false. + // ServerDifficultyChange is called whenever the gamemode of the server changes. + // At time of writing (1.16.3), difficulty values of 0, 1, 2, and 3 correspond + // to peaceful, easy, normal, and hard respectively. + ServerDifficultyChange func(difficulty int) error + + // GameReady is called after the client has joined the server and successfully + // received player state. Additionally, the server has begun sending world + // state (such as lighting and chunk information). + // + // Use this callback as a signal as to when your bot should start 'doing' + // things. + GameReady func() error + + // PositionChange is called whenever the player position is updated. + PositionChange func(pos player.Pos) error + + // ReceivePacket will be called when new packets arrive. + // The default handler will run only if pass == false. ReceivePacket func(p pk.Packet) (pass bool, err error) + + // PrePhysics will be called before a phyiscs tick. + PrePhysics func() error +} + +func (b *eventBroker) updateSeenPackets(f seenPacketFlags) error { + b.seenPackets |= f + if (^b.seenPackets)&gameReadyMinPackets == 0 && b.GameReady != nil && !b.isReady { + b.isReady = true + return b.GameReady() + } + return nil } diff --git a/bot/ingame.go b/bot/ingame.go index 2aa87c5..7742318 100644 --- a/bot/ingame.go +++ b/bot/ingame.go @@ -2,48 +2,110 @@ package bot import ( "bytes" - "errors" "fmt" - "io/ioutil" + "net" + "net/http" + "os" + "time" "github.com/google/uuid" "github.com/Tnze/go-mc/bot/world" "github.com/Tnze/go-mc/bot/world/entity" + "github.com/Tnze/go-mc/bot/world/entity/player" "github.com/Tnze/go-mc/chat" "github.com/Tnze/go-mc/data" - "github.com/Tnze/go-mc/nbt" pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/net/ptypes" ) -// //GetPosition return the player's position -// func (p *Player) GetPosition() (x, y, z float64) { -// return p.X, p.Y, p.Z -// } +func (c *Client) updateServerPos(pos player.Pos) error { + prev := c.Player.Pos + c.Player.Pos = pos -// //GetBlockPos return the position of the Block at player's feet -// func (p *Player) GetBlockPos() (x, y, z int) { -// return int(math.Floor(p.X)), int(math.Floor(p.Y)), int(math.Floor(p.Z)) -// } + switch { + case !prev.LookEqual(pos) && !prev.PosEqual(pos): + sendPlayerPositionAndLookPacket(c) + case !prev.PosEqual(pos): + sendPlayerPositionPacket(c) + case !prev.LookEqual(pos): + sendPlayerLookPacket(c) + case prev.OnGround != pos.OnGround: + c.conn.WritePacket( + pk.Marshal( + data.Flying, + pk.Boolean(pos.OnGround), + ), + ) + } + + if c.justTeleported || time.Now().Add(-time.Second).After(c.lastPosTx) { + c.justTeleported = false + c.lastPosTx = time.Now() + sendPlayerPositionPacket(c) + } + + if c.Events.PositionChange != nil && !prev.Equal(pos) { + if err := c.Events.PositionChange(pos); err != nil { + return err + } + } + return nil +} // HandleGame receive server packet and response them correctly. // Note that HandleGame will block if you don't receive from Events. func (c *Client) HandleGame() error { + c.wg.Add(1) + go func() { + defer c.wg.Done() + for { + select { + case <-c.closing: + return + + default: + //Read packets + p, err := c.conn.ReadPacket() + if err != nil { + if e, ok := err.(*net.OpError); ok && e.Err.Error() != "use of closed network connection" { + fmt.Fprintf(os.Stderr, "ReadPacket error: %v\n", err) + } + return + } + c.inbound <- p + } + } + }() + + cTick := time.NewTicker(time.Second / 10 / 2) + defer cTick.Stop() for { select { - case task := <-c.Delegate: - if err := task(); err != nil { + case <-c.closing: + return http.ErrServerClosed + case <-cTick.C: + if c.Events.PrePhysics != nil { + if err := c.Events.PrePhysics(); err != nil { + return err + } + } + if err := c.Physics.Tick(c.Inputs, &c.Wd); err != nil { + c.disconnect() return err } - default: - //Read packets - p, err := c.conn.ReadPacket() - if err != nil { - return fmt.Errorf("bot: read packet fail: %w", err) + c.updateServerPos(c.Physics.Position()) + + case task := <-c.Delegate: + if err := task(); err != nil { + c.disconnect() + return err } + case p := <-c.inbound: //handle packets disconnect, err := c.handlePacket(p) if err != nil { + c.disconnect() return fmt.Errorf("handle packet 0x%X error: %w", p.ID, err) } if disconnect { @@ -64,65 +126,81 @@ func (c *Client) handlePacket(p pk.Packet) (disconnect bool, err error) { } } - switch p.ID { - case data.JoinGame: + switch data.PktID(p.ID) { + case data.Login: err = handleJoinGamePacket(c, p) - - if err == nil && c.Events.GameStart != nil { - err = c.Events.GameStart() - } - case data.PluginMessageClientbound: + case data.CustomPayloadClientbound: err = handlePluginPacket(c, p) - case data.ServerDifficulty: + case data.Difficulty: err = handleServerDifficultyPacket(c, p) case data.SpawnPosition: err = handleSpawnPositionPacket(c, p) - case data.PlayerAbilitiesClientbound: + if err2 := c.Events.updateSeenPackets(seenSpawnPos); err == nil { + err = err2 + } + case data.AbilitiesClientbound: err = handlePlayerAbilitiesPacket(c, p) - _ = c.conn.WritePacket( - //ClientSettings packet (serverbound) - pk.Marshal( - data.ClientSettings, - pk.String(c.settings.Locale), - pk.Byte(c.settings.ViewDistance), - pk.VarInt(c.settings.ChatMode), - pk.Boolean(c.settings.ChatColors), - pk.UnsignedByte(c.settings.DisplayedSkinParts), - pk.VarInt(c.settings.MainHand), - ), - ) - case data.HeldItemChangeClientbound: - err = handleHeldItemPacket(c, p) - case data.ChunkData: - err = handleChunkDataPacket(c, p) - case data.PlayerPositionAndLookClientbound: - err = handlePlayerPositionAndLookPacket(c, p) - sendPlayerPositionAndLookPacket(c) // to confirm the position - case data.DeclareRecipes: - // handleDeclareRecipesPacket(g, reader) - case data.EntityLookAndRelativeMove: - // err = handleEntityLookAndRelativeMove(g, reader) - case data.EntityHeadLook: - // handleEntityHeadLookPacket(g, reader) - case data.EntityRelativeMove: - // err = handleEntityRelativeMovePacket(g, reader) - case data.KeepAliveClientbound: - err = handleKeepAlivePacket(c, p) - case data.Entity: - //handleEntityPacket(g, reader) - case data.SpawnPlayer: - // err = handleSpawnPlayerPacket(g, reader) - case data.WindowItems: - err = handleWindowItemsPacket(c, p) case data.UpdateHealth: err = handleUpdateHealthPacket(c, p) - case data.ChatMessageClientbound: + case data.ChatClientbound: err = handleChatMessagePacket(c, p) + + case data.HeldItemSlotClientbound: + err = handleHeldItemPacket(c, p) + case data.WindowItems: + err = handleWindowItemsPacket(c, p) + case data.OpenWindow: + err = handleOpenWindowPacket(c, p) + case data.TransactionClientbound: + err = handleWindowConfirmationPacket(c, p) + + case data.DeclareRecipes: + // handleDeclareRecipesPacket(g, reader) + case data.KeepAliveClientbound: + err = handleKeepAlivePacket(c, p) + + case data.SpawnEntity: + err = handleSpawnEntityPacket(c, p) + case data.NamedEntitySpawn: + err = handleSpawnPlayerPacket(c, p) + case data.SpawnEntityLiving: + err = handleSpawnLivingEntityPacket(c, p) + case data.Animation: + err = handleEntityAnimationPacket(c, p) + case data.EntityStatus: + err = handleEntityStatusPacket(c, p) + case data.EntityDestroy: + err = handleDestroyEntitiesPacket(c, p) + case data.RelEntityMove: + err = handleEntityPositionPacket(c, p) + case data.EntityMoveLook: + err = handleEntityPositionLookPacket(c, p) + case data.EntityLook: + err = handleEntityLookPacket(c, p) + case data.Entity: + err = handleEntityMovePacket(c, p) + + case data.UpdateLight: + err = c.Events.updateSeenPackets(seenUpdateLight) + case data.MapChunk: + err = handleChunkDataPacket(c, p) case data.BlockChange: - ////err = handleBlockChangePacket(c, p) + err = handleBlockChangePacket(c, p) case data.MultiBlockChange: - ////err = handleMultiBlockChangePacket(c, p) - case data.DisconnectPlay: + err = handleMultiBlockChangePacket(c, p) + case data.UnloadChunk: + err = handleUnloadChunkPacket(c, p) + case data.TileEntityData: + err = handleTileEntityDataPacket(c, p) + + case data.PositionClientbound: + err = handlePlayerPositionAndLookPacket(c, p) + sendPlayerPositionAndLookPacket(c) // to confirm the position + if err2 := c.Events.updateSeenPackets(seenPlayerPositionAndLook); err == nil { + err = err2 + } + + case data.KickDisconnect: err = handleDisconnectPacket(c, p) disconnect = true case data.SetSlot: @@ -131,7 +209,7 @@ func (c *Client) handlePacket(p pk.Packet) (disconnect bool, err error) { err = handleSoundEffect(c, p) case data.NamedSoundEffect: err = handleNamedSoundEffect(c, p) - case data.SetExperience: + case data.Experience: err = handleSetExperience(c, p) default: // fmt.Printf("ignore pack id %X\n", p.ID) @@ -139,45 +217,135 @@ func (c *Client) handlePacket(p pk.Packet) (disconnect bool, err error) { return } -func handleSoundEffect(c *Client, p pk.Packet) error { +func handleSpawnEntityPacket(c *Client, p pk.Packet) error { + var se ptypes.SpawnEntity + if err := se.Decode(p); err != nil { + return err + } + return c.Wd.OnSpawnEntity(se) +} + +func handleSpawnLivingEntityPacket(c *Client, p pk.Packet) error { + var se ptypes.SpawnLivingEntity + if err := se.Decode(p); err != nil { + return err + } + return c.Wd.OnSpawnLivingEntity(se) +} + +func handleSpawnPlayerPacket(c *Client, p pk.Packet) error { + var se ptypes.SpawnPlayer + if err := se.Decode(p); err != nil { + return err + } + fmt.Println(se) + return c.Wd.OnSpawnPlayer(se) +} + +func handleEntityPositionPacket(c *Client, p pk.Packet) error { + var pu ptypes.EntityPosition + if err := pu.Decode(p); err != nil { + return err + } + return c.Wd.OnEntityPosUpdate(pu) +} + +func handleEntityPositionLookPacket(c *Client, p pk.Packet) error { + var epr ptypes.EntityPositionLook + if err := epr.Decode(p); err != nil { + return err + } + return c.Wd.OnEntityPosLookUpdate(epr) +} + +func handleEntityLookPacket(c *Client, p pk.Packet) error { + var er ptypes.EntityRotation + if err := er.Decode(p); err != nil { + return err + } + return c.Wd.OnEntityLookUpdate(er) +} + +func handleEntityMovePacket(c *Client, p pk.Packet) error { + var id pk.VarInt + if err := p.Scan(&id); err != nil { + return err + } + fmt.Printf("EntityMove (probs didnt for players): %+v\n", id) + return nil +} + +func handleEntityAnimationPacket(c *Client, p pk.Packet) error { + var se ptypes.EntityAnimationClientbound + if err := se.Decode(p); err != nil { + return err + } + // fmt.Printf("EntityAnimationClientbound: %+v\n", se) + return nil +} + +func handleEntityStatusPacket(c *Client, p pk.Packet) error { var ( - SoundID pk.VarInt - SoundCategory pk.VarInt - x, y, z pk.Int - Volume, Pitch pk.Float + id pk.Int + status pk.Byte ) - err := p.Scan(&SoundID, &SoundCategory, &x, &y, &z, &Volume, &Pitch) - if err != nil { + if err := p.Scan(&id, &status); err != nil { + return err + } + // fmt.Printf("EntityStatus: %v, %v\n", id, status) + return nil +} + +func handleDestroyEntitiesPacket(c *Client, p pk.Packet) error { + var ( + count pk.VarInt + r = bytes.NewReader(p.Data) + ) + if err := count.Decode(r); err != nil { + return err + } + + entities := make([]pk.VarInt, int(count)) + for i := 0; i < int(count); i++ { + if err := entities[i].Decode(r); err != nil { + return err + } + } + + return c.Wd.OnEntityDestroy(entities) +} + +func handleSoundEffect(c *Client, p pk.Packet) error { + var s ptypes.SoundEffect + if err := s.Decode(p); err != nil { return err } if c.Events.SoundPlay != nil { - err = c.Events.SoundPlay( - data.SoundNames[SoundID], int(SoundCategory), - float64(x)/8, float64(y)/8, float64(z)/8, - float32(Volume), float32(Pitch)) + if int(s.Sound) < len(data.SoundNames) { + return c.Events.SoundPlay( + data.SoundNames[s.Sound], int(s.Category), + float64(s.X)/8, float64(s.Y)/8, float64(s.Z)/8, + float32(s.Volume), float32(s.Pitch)) + } else { + fmt.Fprintf(os.Stderr, "WARN: Unknown sound name. is data.SoundNames out of date?\n") + } } return nil } func handleNamedSoundEffect(c *Client, p pk.Packet) error { - var ( - SoundName pk.String - SoundCategory pk.VarInt - x, y, z pk.Int - Volume, Pitch pk.Float - ) - err := p.Scan(&SoundName, &SoundCategory, &x, &y, &z, &Volume, &Pitch) - if err != nil { + var s ptypes.NamedSoundEffect + if err := s.Decode(p); err != nil { return err } if c.Events.SoundPlay != nil { - err = c.Events.SoundPlay( - string(SoundName), int(SoundCategory), - float64(x)/8, float64(y)/8, float64(z)/8, - float32(Volume), float32(Pitch)) + return c.Events.SoundPlay( + string(s.Sound), int(s.Category), + float64(s.X)/8, float64(s.Y)/8, float64(s.Z)/8, + float32(s.Volume), float32(s.Pitch)) } return nil @@ -201,214 +369,185 @@ func handleSetSlotPacket(c *Client, p pk.Packet) error { if c.Events.WindowsItemChange == nil { return nil } - var ( - windowID pk.Byte - slotI pk.Short - slot entity.Slot - ) - if err := p.Scan(&windowID, &slotI, &slot); err != nil && !errors.Is(err, nbt.ErrEND) { + var pkt ptypes.SetSlot + if err := pkt.Decode(p); err != nil { return err } - return c.Events.WindowsItemChange(byte(windowID), int(slotI), slot) + return c.Events.WindowsItemChange(byte(pkt.WindowID), int(pkt.Slot), pkt.SlotData) } -// func handleMultiBlockChangePacket(c *Client, p pk.Packet) error { -// if !c.settings.ReceiveMap { -// return nil -// } +func handleMultiBlockChangePacket(c *Client, p pk.Packet) error { + if !c.settings.ReceiveMap { + return nil + } + r := bytes.NewReader(p.Data) -// var cX, cY pk.Int - -// err := p.Scan(&cX, &cY) -// if err != nil { -// return err -// } - -// c := g.wd.chunks[chunkLoc{int(cX), int(cY)}] -// if c != nil { -// RecordCount, err := pk.UnpackVarInt(r) -// if err != nil { -// return err -// } - -// for i := int32(0); i < RecordCount; i++ { -// xz, err := r.ReadByte() -// if err != nil { -// return err -// } -// y, err := r.ReadByte() -// if err != nil { -// return err -// } -// BlockID, err := pk.UnpackVarInt(r) -// if err != nil { -// return err -// } -// x, z := xz>>4, xz&0x0F - -// c.sections[y/16].blocks[x][y%16][z] = Block{id: uint(BlockID)} -// } -// } - -// return nil -// } - -// func handleBlockChangePacket(c *Client, p pk.Packet) error { -// if !c.settings.ReceiveMap { -// return nil -// } -// var pos pk.Position -// err := p.Scan(&pos) -// if err != nil { -// return err -// } - -// c := g.wd.chunks[chunkLoc{x >> 4, z >> 4}] -// if c != nil { -// id, err := pk.UnpackVarInt(r) -// if err != nil { -// return err -// } -// c.sections[y/16].blocks[x&15][y&15][z&15] = Block{id: uint(id)} -// } - -// return nil -// } - -func handleChatMessagePacket(c *Client, p pk.Packet) (err error) { var ( - s chat.Message - pos pk.Byte - sender pk.UUID + loc pk.Long + dontTrustEdges pk.Boolean + sz pk.VarInt ) - err = p.Scan(&s, &pos, &sender) - if err != nil { + if err := loc.Decode(r); err != nil { + return fmt.Errorf("packed location: %v", err) + } + if err := dontTrustEdges.Decode(r); err != nil { + return fmt.Errorf("unknown 1: %v", err) + } + if err := sz.Decode(r); err != nil { + return fmt.Errorf("array size: %v", err) + } + + packedBlocks := make([]pk.VarLong, int(sz)) + for i := 0; i < int(sz); i++ { + if err := packedBlocks[i].Decode(r); err != nil { + return fmt.Errorf("block[%d]: %v", i, err) + } + } + + x, z, y := int((loc>>42)&((1<<22)-1)), + int((loc>>20)&((1<<22)-1)), + int(loc&((1<<20)-1)) + + // Apply transform into negative (these numbers are signed) + if x >= 1<<21 { + x -= 1 << 22 + } + if z >= 1<<21 { + z -= 1 << 22 + } + + c.Wd.MultiBlockUpdate(world.ChunkLoc{X: x, Z: z}, y, packedBlocks) + return nil +} + +func handleBlockChangePacket(c *Client, p pk.Packet) error { + if !c.settings.ReceiveMap { + return nil + } + var ( + pos pk.Position + bID pk.VarInt + ) + + if err := p.Scan(&pos, &bID); err != nil { + return err + } + + c.Wd.UnaryBlockUpdate(pos, world.BlockStatus(bID)) + return nil +} + +func handleChatMessagePacket(c *Client, p pk.Packet) (err error) { + var msg ptypes.ChatMessageClientbound + if err := msg.Decode(p); err != nil { return err } if c.Events.ChatMsg != nil { - err = c.Events.ChatMsg(s, byte(pos), uuid.UUID(sender)) + return c.Events.ChatMsg(msg.S, byte(msg.Pos), uuid.UUID(msg.Sender)) } - - return err -} - -func handleUpdateHealthPacket(c *Client, p pk.Packet) (err error) { - var ( - Health pk.Float - Food pk.VarInt - FoodSaturation pk.Float - ) - - err = p.Scan(&Health, &Food, &FoodSaturation) - if err != nil { - return - } - - c.Health = float32(Health) - c.Food = int32(Food) - c.FoodSaturation = float32(FoodSaturation) - - if c.Events.HealthChange != nil { - err = c.Events.HealthChange() - if err != nil { - return - } - } - if c.Health < 1 { //player is dead - sendPlayerPositionAndLookPacket(c) - if c.Events.Die != nil { - err = c.Events.Die() - if err != nil { - return - } - } - } - return -} - -func handleJoinGamePacket(c *Client, p pk.Packet) error { - var ( - eid pk.Int - hardcore pk.Boolean - gamemode pk.UnsignedByte - previousGm pk.UnsignedByte - worldCount pk.VarInt - worldNames pk.Identifier - _ pk.NBT - //dimensionCodec pk.NBT - dimension pk.Int - worldName pk.Identifier - hashedSeed pk.Long - maxPlayers pk.VarInt - viewDistance pk.VarInt - rdi pk.Boolean // Reduced Debug Info - ers pk.Boolean // Enable respawn screen - isDebug pk.Boolean - isFlat pk.Boolean - ) - err := p.Scan(&eid, &hardcore, &gamemode, &previousGm, &worldCount, &worldNames, &dimension, &worldName, - &hashedSeed, &maxPlayers, &rdi, &ers, &isDebug, &isFlat) - if err != nil { - return err - } - - c.EntityID = int(eid) - c.Gamemode = int(gamemode & 0x7) - c.Hardcore = gamemode&0x8 != 0 - c.Dimension = int(dimension) - c.WorldName = string(worldName) - c.ViewDistance = int(viewDistance) - c.ReducedDebugInfo = bool(rdi) - c.IsDebug = bool(isDebug) - c.IsFlat = bool(isFlat) - return nil } -// The PluginMessageData only used in recive PluginMessage packet. -// When decode it, read to end. -type pluginMessageData []byte - -//Encode a PluginMessageData -func (p pluginMessageData) Encode() []byte { - return []byte(p) -} - -//Decode a PluginMessageData -func (p *pluginMessageData) Decode(r pk.DecodeReader) error { - data, err := ioutil.ReadAll(r) - if err != nil { +func handleUpdateHealthPacket(c *Client, p pk.Packet) error { + var pkt ptypes.UpdateHealth + if err := pkt.Decode(p); err != nil { + return err + } + + c.Health = float32(pkt.Health) + c.Food = int32(pkt.Food) + c.FoodSaturation = float32(pkt.FoodSaturation) + + if c.Events.HealthChange != nil { + if err := c.Events.HealthChange(); err != nil { + return err + } + } + if c.Health < 1 { //player is dead + c.Physics.Run = false + sendPlayerPositionAndLookPacket(c) + if c.Events.Die != nil { + if err := c.Events.Die(); err != nil { + return err + } + } + } + return nil +} + +func handleJoinGamePacket(c *Client, p pk.Packet) error { + var pkt ptypes.JoinGame + if err := pkt.Decode(p); err != nil { + return err + } + + c.Player.ID = int32(pkt.PlayerEntity) + c.Gamemode = int(pkt.Gamemode & 0x7) + c.Hardcore = pkt.Gamemode&0x8 != 0 + c.Dimension = int(pkt.Dimension) + c.WorldName = string(pkt.WorldName) + c.ViewDistance = int(pkt.ViewDistance) + c.ReducedDebugInfo = bool(pkt.RDI) + c.IsDebug = bool(pkt.IsDebug) + c.IsFlat = bool(pkt.IsFlat) + + if c.Events.GameStart != nil { + if err := c.Events.GameStart(); err != nil { + return err + } + } + + c.conn.WritePacket( + //PluginMessage packet (serverbound) - sending minecraft brand. + pk.Marshal( + data.CustomPayloadServerbound, + pk.Identifier("minecraft:brand"), + pk.String(c.settings.Brand), + ), + ) + if err := c.Events.updateSeenPackets(seenJoinGame); err != nil { return err } - *p = data return nil } func handlePluginPacket(c *Client, p pk.Packet) error { - var ( - Channel pk.Identifier - Data pluginMessageData - ) - if err := p.Scan(&Channel, &Data); err != nil { + var msg ptypes.PluginMessage + if err := msg.Decode(p); err != nil { return err } + + switch msg.Channel { + case "minecraft:brand": + var brandRaw pk.String + if err := brandRaw.Decode(bytes.NewReader(msg.Data)); err != nil { + return err + } + c.ServInfo.Brand = string(brandRaw) + } + if c.Events.PluginMessage != nil { - return c.Events.PluginMessage(string(Channel), []byte(Data)) + return c.Events.PluginMessage(string(msg.Channel), []byte(msg.Data)) } return nil } func handleServerDifficultyPacket(c *Client, p pk.Packet) error { var difficulty pk.Byte - err := p.Scan(&difficulty) - if err != nil { + if err := p.Scan(&difficulty); err != nil { return err } c.Difficulty = int(difficulty) - return nil + + if c.Events.ServerDifficultyChange != nil { + if err := c.Events.ServerDifficultyChange(c.Difficulty); err != nil { + return err + } + } + return c.Events.updateSeenPackets(seenServerDifficulty) } func handleSpawnPositionPacket(c *Client, p pk.Packet) error { @@ -417,12 +556,12 @@ func handleSpawnPositionPacket(c *Client, p pk.Packet) error { if err != nil { return err } - // c.SpawnPosition.X, c.SpawnPosition.Y, c.SpawnPosition.Z = - // pos.X, pos.Y, pos.Z + c.SpawnPosition.X, c.SpawnPosition.Y, c.SpawnPosition.Z = + pos.X, pos.Y, pos.Z return nil } -func handlePlayerAbilitiesPacket(g *Client, p pk.Packet) error { +func handlePlayerAbilitiesPacket(c *Client, p pk.Packet) error { var ( flags pk.Byte flySpeed pk.Float @@ -432,10 +571,23 @@ func handlePlayerAbilitiesPacket(g *Client, p pk.Packet) error { if err != nil { return err } - g.abilities.Flags = int8(flags) - g.abilities.FlyingSpeed = float32(flySpeed) - g.abilities.FieldofViewModifier = float32(viewMod) - return nil + c.abilities.Flags = int8(flags) + c.abilities.FlyingSpeed = float32(flySpeed) + c.abilities.FieldofViewModifier = float32(viewMod) + + c.conn.WritePacket( + //ClientSettings packet (serverbound) + pk.Marshal( + data.Settings, + pk.String(c.settings.Locale), + pk.Byte(c.settings.ViewDistance), + pk.VarInt(c.settings.ChatMode), + pk.Boolean(c.settings.ChatColors), + pk.UnsignedByte(c.settings.DisplayedSkinParts), + pk.VarInt(c.settings.MainHand), + ), + ) + return c.Events.updateSeenPackets(seenPlayerAbilities) } func handleHeldItemPacket(c *Client, p pk.Packet) error { @@ -451,138 +603,101 @@ func handleHeldItemPacket(c *Client, p pk.Packet) error { return nil } -func handleChunkDataPacket(c *Client, p pk.Packet) error { +func handleUnloadChunkPacket(c *Client, p pk.Packet) error { if !c.settings.ReceiveMap { return nil } - var ( - X, Z pk.Int - FullChunk pk.Boolean - PrimaryBitMask pk.VarInt - Heightmaps struct{} - Biomes = biomesData{fullChunk: (*bool)(&FullChunk)} - Data chunkData - BlockEntities blockEntities - ) - if err := p.Scan(&X, &Z, &FullChunk, &PrimaryBitMask, pk.NBT{V: &Heightmaps}, &Biomes, &Data, &BlockEntities); err != nil { + var x, z pk.Int + if err := p.Scan(&x, &z); err != nil { return err } - chunk, err := world.DecodeChunkColumn(int32(PrimaryBitMask), Data) - if err != nil { - return fmt.Errorf("decode chunk column fail: %w", err) + c.Wd.UnloadChunk(world.ChunkLoc{X: int(x) >> 4, Z: int(z) >> 4}) + return nil +} + +func handleChunkDataPacket(c *Client, p pk.Packet) error { + if err := c.Events.updateSeenPackets(seenChunkData); err != nil { + return err } - - c.Wd.LoadChunk(int(X), int(Z), chunk) - - return err -} - -type biomesData struct { - fullChunk *bool - data []pk.VarInt -} - -func (b *biomesData) Decode(r pk.DecodeReader) error { - if b.fullChunk == nil || !*b.fullChunk { + if !c.settings.ReceiveMap { return nil } - var nobd pk.VarInt // Number of Biome Datums - if err := nobd.Decode(r); err != nil { + var pkt ptypes.ChunkData + if err := pkt.Decode(p); err != nil { return err } - b.data = make([]pk.VarInt, nobd) - - for i := 0; i < int(nobd); i++ { - var d pk.VarInt - if err := d.Decode(r); err != nil { - return err - } - b.data[i] = d + chunk, err := world.DecodeChunkColumn(int32(pkt.PrimaryBitMask), pkt.Data) + if err != nil { + return fmt.Errorf("decode chunk column: %w", err) + } + chunk.TileEntities = make(map[world.TilePosition]entity.BlockEntity, 64) + for _, e := range pkt.BlockEntities { + chunk.TileEntities[world.ToTilePos(e.X, e.Y, e.Z)] = e } + c.Wd.LoadChunk(int(pkt.X), int(pkt.Z), chunk) return nil } -type chunkData []byte -type blockEntities []blockEntitie -type blockEntitie struct { -} - -// Decode implement net.packet.FieldDecoder -func (c *chunkData) Decode(r pk.DecodeReader) error { - var Size pk.VarInt - if err := Size.Decode(r); err != nil { +func handleTileEntityDataPacket(c *Client, p pk.Packet) error { + var pkt ptypes.TileEntityData + if err := pkt.Decode(p); err != nil { return err } - *c = make([]byte, Size) - if _, err := r.Read(*c); err != nil { - return err - } - return nil -} - -// Decode implement net.packet.FieldDecoder -func (b *blockEntities) Decode(r pk.DecodeReader) error { - var nobe pk.VarInt // Number of BlockEntities - if err := nobe.Decode(r); err != nil { - return err - } - *b = make(blockEntities, nobe) - decoder := nbt.NewDecoder(r) - for i := 0; i < int(nobe); i++ { - if err := decoder.Decode(&(*b)[i]); err != nil { - return err - } - } - return nil + return c.Wd.TileEntityUpdate(pkt) } func handlePlayerPositionAndLookPacket(c *Client, p pk.Packet) error { - var ( - x, y, z pk.Double - yaw, pitch pk.Float - flags pk.Byte - TeleportID pk.VarInt - ) - - err := p.Scan(&x, &y, &z, &yaw, &pitch, &flags, &TeleportID) - if err != nil { + var pkt ptypes.PositionAndLookClientbound + if err := pkt.Decode(p); err != nil { return err } - if flags&0x01 == 0 { - c.X = float64(x) + pp := c.Player.Pos + if pkt.RelativeX() { + pp.X += float64(pkt.X) } else { - c.X += float64(x) + pp.X = float64(pkt.X) } - if flags&0x02 == 0 { - c.Y = float64(y) + if pkt.RelativeY() { + pp.Y += float64(pkt.Y) } else { - c.Y += float64(y) + pp.Y = float64(pkt.Y) } - if flags&0x04 == 0 { - c.Z = float64(z) + if pkt.RelativeZ() { + pp.Z += float64(pkt.Z) } else { - c.Z += float64(z) + pp.Z = float64(pkt.Z) } - if flags&0x08 == 0 { - c.Yaw = float32(yaw) + if pkt.RelativeYaw() { + pp.Yaw += float32(pkt.Yaw) } else { - c.Yaw += float32(yaw) + pp.Yaw = float32(pkt.Yaw) } - if flags&0x10 == 0 { - c.Pitch = float32(pitch) + if pkt.RelativePitch() { + pp.Pitch += float32(pkt.Pitch) } else { - c.Pitch += float32(pitch) + pp.Pitch = float32(pkt.Pitch) + } + if err := c.Physics.ServerPositionUpdate(pp, &c.Wd); err != nil { + return err + } + c.Player.Pos = pp + c.justTeleported = true + + if c.Events.PositionChange != nil { + if err := c.Events.PositionChange(pp); err != nil { + return err + } } //Confirm return c.conn.WritePacket(pk.Marshal( data.TeleportConfirm, - pk.VarInt(TeleportID), + pk.VarInt(pkt.TeleportID), )) } @@ -598,32 +713,45 @@ func handleKeepAlivePacket(c *Client, p pk.Packet) error { )) } -func handleWindowItemsPacket(c *Client, p pk.Packet) (err error) { - if c.Events.WindowsItem == nil { - return nil +func handleWindowItemsPacket(c *Client, p pk.Packet) error { + var pkt ptypes.WindowItems + if err := pkt.Decode(p); err != nil { + return err } - r := bytes.NewReader(p.Data) - var ( - windowID pk.Byte - count pk.Short - slots []entity.Slot - ) - if err := windowID.Decode(r); err != nil { - return err - } - if err := count.Decode(r); err != nil { - return err - } - for i := 0; i < int(count); i++ { - var slot entity.Slot - if err := slot.Decode(r); err != nil && !errors.Is(err, nbt.ErrEND) { + if pkt.WindowID == 0 { // Window ID 0 is the players' inventory. + if err := c.Events.updateSeenPackets(seenPlayerInventory); err != nil { return err } - slots = append(slots, slot) + } + if c.Events.WindowsItem != nil { + return c.Events.WindowsItem(byte(pkt.WindowID), pkt.Slots) + } + return nil +} + +func handleOpenWindowPacket(c *Client, p pk.Packet) error { + var pkt ptypes.OpenWindow + if err := pkt.Decode(p); err != nil { + return err } - return c.Events.WindowsItem(byte(windowID), slots) + if c.Events.OpenWindow != nil { + return c.Events.OpenWindow(pkt) + } + return nil +} + +func handleWindowConfirmationPacket(c *Client, p pk.Packet) error { + var pkt ptypes.ConfirmTransaction + if err := pkt.Decode(p); err != nil { + return err + } + + if c.Events.WindowConfirmation != nil { + return c.Events.WindowConfirmation(pkt) + } + return nil } func handleSetExperience(c *Client, p pk.Packet) (err error) { @@ -646,14 +774,30 @@ func handleSetExperience(c *Client, p pk.Packet) (err error) { return nil } -func sendPlayerPositionAndLookPacket(c *Client) { - c.conn.WritePacket(pk.Marshal( - data.PlayerPositionAndLookServerbound, - pk.Double(c.X), - pk.Double(c.Y), - pk.Double(c.Z), - pk.Float(c.Yaw), - pk.Float(c.Pitch), - pk.Boolean(c.OnGround), - )) +func sendPlayerPositionAndLookPacket(c *Client) error { + return c.conn.WritePacket(ptypes.PositionAndLookServerbound{ + X: pk.Double(c.Pos.X), + Y: pk.Double(c.Pos.Y), + Z: pk.Double(c.Pos.Z), + Yaw: pk.Float(c.Pos.Yaw), + Pitch: pk.Float(c.Pos.Pitch), + OnGround: pk.Boolean(c.Pos.OnGround), + }.Encode()) +} + +func sendPlayerPositionPacket(c *Client) error { + return c.conn.WritePacket(ptypes.Position{ + X: pk.Double(c.Pos.X), + Y: pk.Double(c.Pos.Y), + Z: pk.Double(c.Pos.Z), + OnGround: pk.Boolean(c.Pos.OnGround), + }.Encode()) +} + +func sendPlayerLookPacket(c *Client) error { + return c.conn.WritePacket(ptypes.Look{ + Yaw: pk.Float(c.Pos.Yaw), + Pitch: pk.Float(c.Pos.Pitch), + OnGround: pk.Boolean(c.Pos.OnGround), + }.Encode()) } diff --git a/bot/mcbot.go b/bot/mcbot.go index c5aebea..4a5fecb 100644 --- a/bot/mcbot.go +++ b/bot/mcbot.go @@ -9,12 +9,13 @@ import ( "net" "strconv" + "github.com/Tnze/go-mc/data" mcnet "github.com/Tnze/go-mc/net" pk "github.com/Tnze/go-mc/net/packet" ) // ProtocolVersion , the protocol version number of minecraft net protocol -const ProtocolVersion = 751 +const ProtocolVersion = 753 // JoinServer connect a Minecraft server for playing the game. func (c *Client) JoinServer(addr string, port int) (err error) { @@ -98,7 +99,7 @@ func (c *Client) join(d Dialer, addr string) (err error) { case 0x02: //Login Success // uuid, l := pk.UnpackString(pack.Data) // name, _ := unpackString(pack.Data[l:]) - return //switches the connection state to PLAY. + return nil case 0x03: //Set Compression var threshold pk.VarInt if err := pack.Scan(&threshold); err != nil { @@ -124,3 +125,13 @@ type Dialer interface { func (c *Client) Conn() *mcnet.Conn { return c.conn } + +// SendMessage sends a chat message. +func (c *Client) SendMessage(msg string) error { + return c.conn.WritePacket( + pk.Marshal( + data.ChatServerbound, + pk.String(msg), + ), + ) +} diff --git a/bot/motion.go b/bot/motion.go index 8989411..277f3c1 100644 --- a/bot/motion.go +++ b/bot/motion.go @@ -6,6 +6,7 @@ import ( "github.com/Tnze/go-mc/data" pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/net/ptypes" ) // SwingArm swing player's arm. @@ -13,7 +14,7 @@ import ( // It's just animation. func (c *Client) SwingArm(hand int) error { return c.conn.WritePacket(pk.Marshal( - data.AnimationServerbound, + data.ArmAnimation, pk.VarInt(hand), )) } @@ -21,7 +22,7 @@ func (c *Client) SwingArm(hand int) error { // Respawn the player when it was dead. func (c *Client) Respawn() error { return c.conn.WritePacket(pk.Marshal( - data.ClientStatus, + data.ClientCommand, pk.VarInt(0), )) } @@ -77,18 +78,17 @@ func (c *Client) Chat(msg string) error { } return c.conn.WritePacket(pk.Marshal( - data.ChatMessageServerbound, + data.ChatServerbound, pk.String(msg), )) } // PluginMessage is used by mods and plugins to send their data. -func (c *Client) PluginMessage(channal string, msg []byte) error { - return c.conn.WritePacket(pk.Marshal( - data.PluginMessageServerbound, - pk.Identifier(channal), - pluginMessageData(msg), - )) +func (c *Client) PluginMessage(channel string, msg []byte) error { + return c.conn.WritePacket((&ptypes.PluginMessage{ + Channel: pk.Identifier(channel), + Data: ptypes.PluginData(msg), + }).Encode()) } // UseBlock is used to place or use a block. @@ -103,7 +103,7 @@ func (c *Client) PluginMessage(channal string, msg []byte) error { // insideBlock is true when the player's head is inside of a block's collision. func (c *Client) UseBlock(hand, locX, locY, locZ, face int, cursorX, cursorY, cursorZ float32, insideBlock bool) error { return c.conn.WritePacket(pk.Marshal( - data.PlayerBlockPlacement, + data.UseItem, pk.VarInt(hand), pk.Position{X: locX, Y: locY, Z: locZ}, pk.VarInt(face), @@ -120,7 +120,7 @@ func (c *Client) SelectItem(slot int) error { } return c.conn.WritePacket(pk.Marshal( - data.HeldItemChangeServerbound, + data.HeldItemSlotServerbound, pk.Short(slot), )) } @@ -144,7 +144,7 @@ func (c *Client) PickItem(slot int) error { func (c *Client) playerAction(status, locX, locY, locZ, face int) error { return c.conn.WritePacket(pk.Marshal( - data.PlayerDigging, + data.BlockDig, pk.VarInt(status), pk.Position{X: locX, Y: locY, Z: locZ}, pk.Byte(face), @@ -180,7 +180,7 @@ func (c *Client) SwapItem() error { // Disconnect disconnect the server. // Server will close the connection. -func (c *Client) Disconnect() error { +func (c *Client) disconnect() error { return c.conn.Close() } diff --git a/bot/path/blocks.go b/bot/path/blocks.go new file mode 100644 index 0000000..d2143fa --- /dev/null +++ b/bot/path/blocks.go @@ -0,0 +1,118 @@ +package path + +import ( + "github.com/Tnze/go-mc/bot/world" + "github.com/Tnze/go-mc/data/block" +) + +var ( + safeStepBlocks = make(map[world.BlockStatus]struct{}, 1024) + stepBlocks = []block.Block{ + block.Stone, + block.Granite, + block.PolishedGranite, + block.Diorite, + block.PolishedDiorite, + block.Andesite, + block.PolishedAndesite, + block.GrassBlock, + block.GrassPath, + block.Dirt, + block.CoarseDirt, + block.Cobblestone, + block.OakPlanks, + block.SprucePlanks, + block.BirchPlanks, + block.JunglePlanks, + block.AcaciaPlanks, + block.DarkOakPlanks, + block.Bedrock, + block.GoldOre, + block.IronOre, + block.CoalOre, + block.Glass, + block.LapisOre, + block.Sandstone, + block.RedstoneOre, + block.OakStairs, + block.AcaciaStairs, + block.DarkOakStairs, + block.RedSandstoneStairs, + block.PolishedGraniteStairs, + block.SmoothRedSandstoneStairs, + block.MossyStoneBrickStairs, + block.PolishedDioriteStairs, + block.MossyCobblestoneStairs, + block.EndStoneBrickStairs, + block.StoneStairs, + block.SmoothSandstoneStairs, + block.SmoothQuartzStairs, + block.GraniteStairs, + block.AndesiteStairs, + block.RedNetherBrickStairs, + block.PolishedAndesiteStairs, + } + + safeWalkBlocks = make(map[world.BlockStatus]struct{}, 128) + walkBlocks = []block.Block{ + block.Air, + block.CaveAir, + block.Grass, + block.Torch, + block.OakSign, + block.SpruceSign, + block.BirchSign, + block.AcaciaSign, + block.JungleSign, + block.DarkOakSign, + block.OakWallSign, + block.SpruceWallSign, + block.BirchWallSign, + block.AcaciaWallSign, + block.JungleWallSign, + block.DarkOakWallSign, + block.Cornflower, + block.TallGrass, + } + + additionalCostBlocks = map[*block.Block]int{ + &block.Rail: 120, + &block.PoweredRail: 200, + } +) + +func init() { + for _, b := range stepBlocks { + if b.MinStateID == b.MaxStateID { + safeStepBlocks[world.BlockStatus(b.MinStateID)] = struct{}{} + } else { + for i := b.MinStateID; i <= b.MaxStateID; i++ { + safeStepBlocks[world.BlockStatus(i)] = struct{}{} + } + } + } + + for _, b := range walkBlocks { + if b.MinStateID == b.MaxStateID { + safeWalkBlocks[world.BlockStatus(b.MinStateID)] = struct{}{} + } else { + for i := b.MinStateID; i <= b.MaxStateID; i++ { + safeWalkBlocks[world.BlockStatus(i)] = struct{}{} + } + } + } +} + +func SteppableBlock(bID world.BlockStatus) bool { + _, ok := safeStepBlocks[bID] + return ok +} + +func AirLikeBlock(bID world.BlockStatus) bool { + _, ok := safeWalkBlocks[bID] + return ok +} + +func IsLadder(bID world.BlockStatus) bool { + return uint32(bID) >= block.Ladder.MinStateID && uint32(bID) <= block.Ladder.MaxStateID +} diff --git a/bot/path/inputs.go b/bot/path/inputs.go new file mode 100644 index 0000000..2190ada --- /dev/null +++ b/bot/path/inputs.go @@ -0,0 +1,10 @@ +package path + +// Inputs describes the desired movements of the player. +type Inputs struct { + Yaw, Pitch float64 + + ThrottleX, ThrottleZ float64 + + Jump bool +} diff --git a/bot/path/movement.go b/bot/path/movement.go new file mode 100644 index 0000000..1fb20ef --- /dev/null +++ b/bot/path/movement.go @@ -0,0 +1,358 @@ +package path + +import ( + "fmt" + + "github.com/Tnze/go-mc/bot/world" + "github.com/Tnze/go-mc/data/block" +) + +// Cardinal directions. +type Direction uint8 + +func (d Direction) Offset() (x, y, z int) { + switch d { + case North: + return 0, 0, -1 + case South: + return 0, 0, 1 + case East: + return 1, 0, 0 + case West: + return -1, 0, 0 + } + panic(fmt.Sprintf("unknown direction value: %v", d)) +} + +func (d Direction) Offset2x() (x, y, z int) { + x, y, z = d.Offset() + return x + x, y + y, z + z +} + +func (d Direction) String() string { + switch d { + case North: + return "north" + case South: + return "south" + case East: + return "east" + case West: + return "west" + } + return fmt.Sprintf("Direction?<%d>", int(d)) +} + +// Valid direction values. +const ( + North Direction = iota + South + West + East +) + +func LadderDirection(bStateID world.BlockStatus) Direction { + return Direction(((uint32(bStateID) - block.Ladder.MinStateID) & 0xE) >> 1) +} + +func ChestDirection(bStateID world.BlockStatus) Direction { + return Direction(((uint32(bStateID) - block.Chest.MinStateID) / 6) & 0x3) +} + +func StairsDirection(bStateID world.BlockStatus) Direction { + b := block.StateID[uint32(bStateID)] + return Direction(((uint32(bStateID) - block.ByID[b].MinStateID) / 20) & 0x3) +} + +// Movement represents a single type of movement in a path. +type Movement uint8 + +var allMovements = []Movement{TraverseNorth, TraverseSouth, TraverseEast, TraverseWest, + TraverseNorthWest, TraverseNorthEast, TraverseSouthWest, TraverseSouthEast, + DropNorth, DropSouth, DropEast, DropWest, + Drop2North, Drop2South, Drop2East, Drop2West, + AscendNorth, AscendSouth, AscendEast, AscendWest, + DescendLadder, DescendLadderNorth, DescendLadderSouth, DescendLadderEast, DescendLadderWest, + AscendLadder, + JumpCrossNorth, JumpCrossSouth, JumpCrossEast, JumpCrossWest, +} + +// Valid movement values. +const ( + Waypoint Movement = iota + TraverseNorth + TraverseSouth + TraverseEast + TraverseWest + TraverseNorthEast + TraverseNorthWest + TraverseSouthEast + TraverseSouthWest + DropNorth + DropSouth + DropEast + DropWest + Drop2North + Drop2South + Drop2East + Drop2West + AscendNorth + AscendSouth + AscendEast + AscendWest + DescendLadder + DescendLadderNorth + DescendLadderSouth + DescendLadderEast + DescendLadderWest + AscendLadder + JumpCrossEast + JumpCrossWest + JumpCrossNorth + JumpCrossSouth +) + +func (m Movement) Possible(nav *Nav, x, y, z int, from V3, previous Movement) bool { + // fmt.Printf("%s.Possible(%d,%d,%d)\n", m, x, y, z) + switch m { + case Waypoint, TraverseNorth, TraverseSouth, TraverseEast, TraverseWest: + if !SteppableBlock(nav.World.GetBlockStatus(x, y, z)) { + return false + } + b1, b2 := nav.World.GetBlockStatus(x, y+1, z), nav.World.GetBlockStatus(x, y+2, z) + u1, u2 := AirLikeBlock(b1) || IsLadder(b1), AirLikeBlock(b2) || IsLadder(b2) + return u1 && u2 + + case TraverseNorthWest, TraverseNorthEast, TraverseSouthWest, TraverseSouthEast: + if !SteppableBlock(nav.World.GetBlockStatus(x, y, z)) { + return false + } + if !AirLikeBlock(nav.World.GetBlockStatus(x, y+1, z)) || !AirLikeBlock(nav.World.GetBlockStatus(x, y+2, z)) { + return false + } + if !AirLikeBlock(nav.World.GetBlockStatus(from.X, y+1, z)) || !AirLikeBlock(nav.World.GetBlockStatus(from.X, y+2, z)) { + return false + } + return AirLikeBlock(nav.World.GetBlockStatus(x, y+1, from.Z)) && AirLikeBlock(nav.World.GetBlockStatus(x, y+2, from.Z)) + + case Drop2North, Drop2South, Drop2East, Drop2West: + if !AirLikeBlock(nav.World.GetBlockStatus(x, y+4, z)) { + return false + } + fallthrough + + case DropNorth, DropSouth, DropEast, DropWest: + for amt := 0; amt < 3; amt++ { + if !AirLikeBlock(nav.World.GetBlockStatus(x, y+amt+1, z)) { + return false + } + } + return SteppableBlock(nav.World.GetBlockStatus(x, y, z)) + + case AscendNorth, AscendSouth, AscendEast, AscendWest: + if !AirLikeBlock(nav.World.GetBlockStatus(x, y+1, z)) || !AirLikeBlock(nav.World.GetBlockStatus(x, y+2, z)) { + return false + } + return SteppableBlock(nav.World.GetBlockStatus(x, y, z)) && + AirLikeBlock(nav.World.GetBlockStatus(from.X, from.Y+1, from.Z)) && + AirLikeBlock(nav.World.GetBlockStatus(from.X, from.Y+2, from.Z)) + + case DescendLadder, AscendLadder: + if bID := nav.World.GetBlockStatus(x, y+1, z); !AirLikeBlock(bID) && !IsLadder(bID) { + return false + } + return IsLadder(nav.World.GetBlockStatus(x, y, z)) + + case DescendLadderNorth, DescendLadderSouth, DescendLadderEast, DescendLadderWest: + for amt := 0; amt < 2; amt++ { + if bID := nav.World.GetBlockStatus(x, y+amt+1, z); !AirLikeBlock(bID) && !IsLadder(bID) { + return false + } + } + return IsLadder(nav.World.GetBlockStatus(x, y, z)) + + case JumpCrossEast, JumpCrossWest, JumpCrossNorth, JumpCrossSouth: + if !AirLikeBlock(nav.World.GetBlockStatus(x, y+1, z)) || !AirLikeBlock(nav.World.GetBlockStatus(x, y+2, z)) || !AirLikeBlock(nav.World.GetBlockStatus(x, y+3, z)) { + return false + } + midX, midZ := (from.X+x)/2, (from.Z+z)/2 + if !AirLikeBlock(nav.World.GetBlockStatus(midX, y+1, midZ)) || !AirLikeBlock(nav.World.GetBlockStatus(midX, y+2, midZ)) || !AirLikeBlock(nav.World.GetBlockStatus(midX, y+3, midZ)) { + return false + } + if !AirLikeBlock(nav.World.GetBlockStatus(from.X, from.Y+3, from.Z)) { + return false + } + return SteppableBlock(nav.World.GetBlockStatus(x, y, z)) + + default: + panic(m) + } +} + +func (m Movement) Offset() (x, y, z int) { + switch m { + case Waypoint: + return 0, 0, 0 + case TraverseNorth: + return North.Offset() + case TraverseSouth: + return South.Offset() + case TraverseEast: + return East.Offset() + case TraverseWest: + return West.Offset() + + case JumpCrossEast: + return East.Offset2x() + case JumpCrossWest: + return West.Offset2x() + case JumpCrossNorth: + return North.Offset2x() + case JumpCrossSouth: + return South.Offset2x() + + case AscendLadder: + return 0, 1, 0 + case DescendLadder: + return 0, -1, 0 + case DropNorth, DescendLadderNorth: + return 0, -1, -1 + case DropSouth, DescendLadderSouth: + return 0, -1, 1 + case DropEast, DescendLadderEast: + return 1, -1, 0 + case DropWest, DescendLadderWest: + return -1, -1, 0 + case AscendNorth: + return 0, 1, -1 + case AscendSouth: + return 0, 1, 1 + case AscendEast: + return 1, 1, 0 + case AscendWest: + return -1, 1, 0 + + case TraverseNorthWest: + return -1, 0, -1 + case TraverseNorthEast: + return 1, 0, -1 + case TraverseSouthWest: + return -1, 0, 1 + case TraverseSouthEast: + return 1, 0, 1 + + case Drop2North: + return 0, -2, -1 + case Drop2South: + return 0, -2, 1 + case Drop2East: + return 1, -2, 0 + case Drop2West: + return -1, -2, 0 + + default: + panic(m) + } +} + +func (m Movement) BaseCost() float64 { + switch m { + case Waypoint: + return 0 + case TraverseNorth, TraverseSouth, TraverseEast, TraverseWest: + return 2 + case TraverseNorthWest, TraverseNorthEast, TraverseSouthWest, TraverseSouthEast: + return 2.5 + + case DropNorth, DropSouth, DropEast, DropWest, Drop2North, Drop2South, Drop2East, Drop2West: + return 4 + case AscendNorth, AscendSouth, AscendEast, AscendWest: + return 4 + case DescendLadderNorth, DescendLadderSouth, DescendLadderEast, DescendLadderWest: + return 1.5 + case DescendLadder: + return 1 + case AscendLadder: + return 3 + + case JumpCrossEast, JumpCrossWest, JumpCrossNorth, JumpCrossSouth: + return 5.5 + default: + panic(m) + } +} + +func (m Movement) String() string { + switch m { + case Waypoint: + return "waypoint" + case TraverseNorth: + return "traverse-north" + case TraverseSouth: + return "traverse-south" + case TraverseEast: + return "traverse-east" + case TraverseWest: + return "traverse-west" + + case DropNorth: + return "drop-north" + case DropSouth: + return "drop-south" + case DropEast: + return "drop-east" + case DropWest: + return "drop-west" + case Drop2North: + return "drop-2-north" + case Drop2South: + return "drop-2-south" + case Drop2East: + return "drop-2-east" + case Drop2West: + return "drop-2-west" + + case AscendNorth: + return "jump-north" + case AscendSouth: + return "jump-south" + case AscendEast: + return "jump-east" + case AscendWest: + return "jump-west" + + case TraverseNorthWest: + return "traverse-northwest" + case TraverseNorthEast: + return "traverse-northeast" + case TraverseSouthWest: + return "traverse-southwest" + case TraverseSouthEast: + return "traverse-southeast" + + case DescendLadder: + return "descend-ladder" + case DescendLadderNorth: + return "descend-ladder-north" + case DescendLadderSouth: + return "descend-ladder-south" + case DescendLadderEast: + return "descend-ladder-east" + case DescendLadderWest: + return "descend-ladder-west" + + case AscendLadder: + return "ascend-ladder" + + case JumpCrossEast: + return "jump-crossing-east" + case JumpCrossWest: + return "jump-crossing-west" + case JumpCrossNorth: + return "jump-crossing-north" + case JumpCrossSouth: + return "jump-crossing-south" + default: + panic(m) + } +} diff --git a/bot/path/path.go b/bot/path/path.go new file mode 100644 index 0000000..e2b14cc --- /dev/null +++ b/bot/path/path.go @@ -0,0 +1,196 @@ +// Package path implements pathfinding. +package path + +import ( + "math" + "math/rand" + "strings" + "time" + + "github.com/Tnze/go-mc/bot/world" + "github.com/Tnze/go-mc/data/block" + "github.com/beefsack/go-astar" +) + +// Point represents a point in 3D space. +type Point struct { + X, Y, Z float64 +} + +type V3 struct { + X, Y, Z int +} + +func (v V3) Cost(other V3) float64 { + x, y, z := v.X-other.X, v.Y-other.Y, v.Z-other.Z + return math.Sqrt(float64(x*x+z*z)) + math.Sqrt(1.2*float64(y*y)) +} + +// Nav represents a navigation to a position. +type Nav struct { + World *world.World + Start, Dest V3 +} + +func (n *Nav) Path() (path []astar.Pather, distance float64, found bool) { + return astar.Path( + Tile{ // Start point + Nav: n, + Movement: Waypoint, + Pos: n.Start, + }, + Tile{ // Destination point + Nav: n, + Movement: Waypoint, + Pos: n.Dest, + }) +} + +// Tile represents a point in a path. All tiles in a path are adjaceent their +// preceeding tiles. +type Tile struct { + Nav *Nav + + Movement Movement + Pos V3 + BlockStatus world.BlockStatus + ExtraCost int +} + +func (t Tile) PathNeighborCost(to astar.Pather) float64 { + other := to.(Tile) + return 1 + other.Movement.BaseCost() +} + +func (t Tile) PathEstimatedCost(to astar.Pather) float64 { + other := to.(Tile) + cost := t.Pos.Cost(other.Pos) + + return cost + other.Movement.BaseCost() +} + +func (t Tile) PathNeighbors() []astar.Pather { + possibles := make([]astar.Pather, 0, 8) + + if c := t.PathEstimatedCost(Tile{Pos: t.Nav.Start}); c > 8000 { + return nil + } + + if t.Pos == t.Nav.Dest && t.Movement != Waypoint { + dupe := t + dupe.Movement = Waypoint + dupe.BlockStatus = 0 + return []astar.Pather{dupe} + } + + for _, m := range allMovements { + x, y, z := m.Offset() + pos := V3{X: t.Pos.X + x, Y: t.Pos.Y + y, Z: t.Pos.Z + z} + possible := m.Possible(t.Nav, pos.X, pos.Y, pos.Z, t.Pos, t.Movement) + // fmt.Printf("%v-%v: Trying (%v) %v: possible=%v\n", t.Movement, t.Pos, pos, m, possible) + if possible { + possibles = append(possibles, Tile{ + Nav: t.Nav, + Movement: m, + Pos: pos, + BlockStatus: t.Nav.World.GetBlockStatus(pos.X, pos.Y, pos.Z), + }) + } + } + + // fmt.Printf("%v.Neighbours(): %+v\n", t.Pos, possibles) + return possibles +} + +func (t Tile) Inputs(pos, deltaPos, vel Point, runTime time.Duration) Inputs { + // Sufficient for simple movements. + at := math.Atan2(-deltaPos.X, -deltaPos.Z) + mdX, _, mdZ := t.Movement.Offset() + wantYaw := -math.Atan2(float64(mdX), float64(mdZ)) * 180 / math.Pi + out := Inputs{ + ThrottleX: math.Sin(at), + ThrottleZ: math.Cos(at), + Yaw: wantYaw, + } + if mdX == 0 && mdZ == 0 { + out.Yaw = math.NaN() + } + if (rand.Int() % 14) == 0 { + out.Pitch = float64((rand.Int() % 4) - 2) + } + + switch t.Movement { + case DescendLadder, DescendLadderEast, DescendLadderWest, DescendLadderNorth, DescendLadderSouth: + // Deadzone the throttle to prevent an accidental ascend. + if dist2 := math.Sqrt(deltaPos.X*deltaPos.X + deltaPos.Z*deltaPos.Z); dist2 < (0.22 * 0.22 * 2) { + out.ThrottleX, out.ThrottleZ = 0, 0 + } + + case AscendLadder: + dist2 := math.Sqrt(deltaPos.X*deltaPos.X + deltaPos.Z*deltaPos.Z) + + if x, _, z := LadderDirection(t.BlockStatus).Offset(); dist2 > (0.8*0.8) && deltaPos.Y < 0 { + pos.X -= (0.25 * float64(x)) + pos.Z -= (0.25 * float64(z)) + } else { + pos.X += (0.42 * float64(x)) + pos.Z += (0.42 * float64(z)) + } + + at = math.Atan2(-pos.X+float64(t.Pos.X)+0.5, -pos.Z+float64(t.Pos.Z)+0.5) + out = Inputs{ + ThrottleX: math.Sin(at), + ThrottleZ: math.Cos(at), + Yaw: math.NaN(), + } + + case AscendNorth, AscendSouth, AscendEast, AscendWest: + var ( + b = block.ByID[block.StateID[uint32(t.BlockStatus)]] + isStairs = strings.HasSuffix(b.Name, "_stairs") + maybeStuck = runTime < 1250*time.Millisecond + dist2 = math.Sqrt(deltaPos.X*deltaPos.X + deltaPos.Z*deltaPos.Z) + ) + out.Jump = dist2 < 1.75 && deltaPos.Y < -0.81 + + // Special logic for stairs: Try to go towards the downwards edge initially. + if isStairs && dist2 > (0.9*0.9) && deltaPos.Y < 0 { + if x, _, z := StairsDirection(t.BlockStatus).Offset(); dist2 > (0.9*0.9) && deltaPos.Y < 0 { + pos.X += (0.49 * float64(x)) + pos.Z += (0.49 * float64(z)) + } + + at = math.Atan2(-pos.X+float64(t.Pos.X)+0.5, -pos.Z+float64(t.Pos.Z)+0.5) + out = Inputs{ + ThrottleX: math.Sin(at), + ThrottleZ: math.Cos(at), + Yaw: math.NaN(), + Jump: out.Jump && !maybeStuck, + } + } + + // Turn off the throttle if we get stuck on the jump. + if dist2 < 1 && deltaPos.Y < 0 && vel.Y == 0 { + out.ThrottleX, out.ThrottleZ = 0, 0 + } + + case JumpCrossEast, JumpCrossWest, JumpCrossNorth, JumpCrossSouth: + dist2 := math.Sqrt(deltaPos.X*deltaPos.X + deltaPos.Z*deltaPos.Z) + out.Jump = dist2 > 1.5 && dist2 < 1.78 + } + return out +} + +func (t Tile) IsComplete(d Point) bool { + switch t.Movement { + case DescendLadder, DescendLadderNorth, DescendLadderSouth, DescendLadderWest, DescendLadderEast, + DropNorth, DropSouth, DropEast, DropWest: + return (d.X*d.X+d.Z*d.Z) < (2*0.2*0.25) && d.Y <= 0.05 + case AscendLadder: + return d.Y >= 0 + case JumpCrossEast, JumpCrossWest, JumpCrossNorth, JumpCrossSouth: + return (d.X*d.X+d.Z*d.Z) < (0.22*0.22) && d.Y >= -0.065 + } + + return (d.X*d.X+d.Z*d.Z) < (0.18*0.18) && d.Y >= -0.065 && d.Y <= 0.08 +} diff --git a/bot/phy/aabb.go b/bot/phy/aabb.go new file mode 100644 index 0000000..513543c --- /dev/null +++ b/bot/phy/aabb.go @@ -0,0 +1,143 @@ +package phy + +import ( + "math" + + "github.com/Tnze/go-mc/bot/world" +) + +type MinMax struct { + Min, Max float64 +} + +// Extends adjusts the bounds of the MinMax. A negative number will reduce the +// minimum bound, whereas a positive number will increase the maximum bound. +func (mm MinMax) Extend(delta float64) MinMax { + if delta < 0 { + return MinMax{ + Min: mm.Min + delta, + Max: mm.Max, + } + } + + return MinMax{ + Min: mm.Min, + Max: mm.Max + delta, + } +} + +// Contract reduces both the minimum and maximum bound by the provided amount, +// such that the difference between the bounds decreases for positive values. +func (mm MinMax) Contract(amt float64) MinMax { + return MinMax{ + Min: mm.Min + amt, + Max: mm.Max - amt, + } +} + +// Expand changes the minimum and maximum bounds by the provided amount, such +// that the difference between the bounds increases for positive values. +func (mm MinMax) Expand(amt float64) MinMax { + return MinMax{ + Min: mm.Min - amt, + Max: mm.Max + amt, + } +} + +// Offset adds the provided value to both the minimum and maximum value. +func (mm MinMax) Offset(amt float64) MinMax { + return MinMax{ + Min: mm.Min + amt, + Max: mm.Max + amt, + } +} + +// AABB implements Axis Aligned Bounding Box operations. +type AABB struct { + X, Y, Z MinMax + Block world.BlockStatus +} + +// Extend adjusts the minimum (for negative values) or maximum bounds (for +// positive values) by the provided scalar for each dimension. +func (bb AABB) Extend(dx, dy, dz float64) AABB { + return AABB{ + X: bb.X.Extend(dx), + Y: bb.Y.Extend(dx), + Z: bb.Z.Extend(dx), + Block: bb.Block, + } +} + +// Contract reduces the difference between the min/max bounds (for positive +// values) for each dimension. +func (bb AABB) Contract(x, y, z float64) AABB { + return AABB{ + X: bb.X.Contract(x), + Y: bb.Y.Contract(y), + Z: bb.Z.Contract(z), + Block: bb.Block, + } +} + +// Expand increases both the minimum and maximum bounds by the provided amount +// (for positive values) for each dimension. +func (bb AABB) Expand(x, y, z float64) AABB { + return AABB{ + X: bb.X.Expand(x), + Y: bb.Y.Expand(y), + Z: bb.Z.Expand(z), + Block: bb.Block, + } +} + +// Offset moves both the minimum and maximum bound by the provided value for +// each dimension. +func (bb AABB) Offset(x, y, z float64) AABB { + return AABB{ + X: bb.X.Offset(x), + Y: bb.Y.Offset(y), + Z: bb.Z.Offset(z), + Block: bb.Block, + } +} + +func (bb AABB) XOffset(o AABB, xOffset float64) float64 { + if o.Y.Max > bb.Y.Min && o.Y.Min < bb.Y.Max && o.Z.Max > bb.Z.Min && o.Z.Min < bb.Z.Max { + if xOffset > 0.0 && o.X.Max <= bb.X.Min { + xOffset = math.Min(bb.X.Min-o.X.Max, xOffset) + } else if xOffset < 0.0 && o.X.Min >= bb.X.Max { + xOffset = math.Max(bb.X.Max-o.X.Min, xOffset) + } + } + return xOffset +} + +func (bb AABB) YOffset(o AABB, yOffset float64) float64 { + if o.X.Max > bb.X.Min && o.X.Min < bb.X.Max && o.Z.Max > bb.Z.Min && o.Z.Min < bb.Z.Max { + if yOffset > 0.0 && o.Y.Max <= bb.Y.Min { + yOffset = math.Min(bb.Y.Min-o.Y.Max, yOffset) + } else if yOffset < 0.0 && o.Y.Min >= bb.Y.Max { + yOffset = math.Max(bb.Y.Max-o.Y.Min, yOffset) + } + } + return yOffset +} + +func (bb AABB) ZOffset(o AABB, zOffset float64) float64 { + if o.X.Max > bb.X.Min && o.X.Min < bb.X.Max && o.Y.Max > bb.Y.Min && o.Y.Min < bb.Y.Max { + if zOffset > 0.0 && o.Z.Max <= bb.Z.Min { + zOffset = math.Min(bb.Z.Min-o.Z.Max, zOffset) + } else if zOffset < 0.0 && o.Z.Min >= bb.Z.Max { + zOffset = math.Max(bb.Z.Max-o.Z.Min, zOffset) + } + } + return zOffset +} + +func (bb AABB) Intersects(o AABB) bool { + return true && + bb.X.Min < o.X.Max && bb.X.Max > o.X.Min && + bb.Y.Min < o.Y.Max && bb.Y.Max > o.Y.Min && + bb.Z.Min < o.Z.Max && bb.Z.Max > o.Z.Min +} diff --git a/bot/phy/phy.go b/bot/phy/phy.go new file mode 100644 index 0000000..31e205a --- /dev/null +++ b/bot/phy/phy.go @@ -0,0 +1,300 @@ +// Package phy implements a minimal physics simulation necessary for realistic +// bot behavior. +package phy + +import ( + "fmt" + "math" + + "github.com/Tnze/go-mc/bot/path" + "github.com/Tnze/go-mc/bot/world" + "github.com/Tnze/go-mc/bot/world/entity/player" + "github.com/Tnze/go-mc/data/block/shape" +) + +const ( + playerWidth = 0.6 + playerHeight = 1.8 + resetVel = 0.003 + + maxYawChange = 11 + maxPitchChange = 7 + + stepHeight = 0.6 + minJumpTicks = 14 + ladderMaxSpeed = 0.15 + ladderClimbSpeed = 0.2 + + gravity = 0.08 + drag = 0.98 + acceleration = 0.02 + inertia = 0.91 + slipperiness = 0.6 +) + +// World represents a provider of information about the surrounding world. +type World interface { + GetBlockStatus(x, y, z int) world.BlockStatus +} + +// Surrounds represents the blocks surrounding the player (Y, Z, X). +type Surrounds []AABB + +// State tracks physics state. +type State struct { + // player state. + Pos path.Point + Vel path.Point + Yaw, Pitch float64 + lastJump uint32 + + // player state flags. + onGround bool + collision struct { + vertical bool + horizontal bool + } + + tick uint32 + Run bool +} + +func (s *State) ServerPositionUpdate(player player.Pos, w World) error { + fmt.Printf("TELEPORT (y=%0.2f, velY=%0.3f): %0.2f, %0.2f, %0.2f\n", s.Pos.Y, s.Vel.Y, player.X-s.Pos.X, player.Y-s.Pos.Y, player.Z-s.Pos.Z) + + s.Pos = path.Point{X: player.X, Y: player.Y, Z: player.Z} + s.Yaw, s.Pitch = float64(player.Yaw), float64(player.Pitch) + s.Vel = path.Point{} + s.onGround, s.collision.vertical, s.collision.horizontal = false, false, false + s.Run = true + return nil +} + +func abs(i1, i2 int) int { + if i1 < i2 { + return i2 - i1 + } + return i1 - i2 +} + +func (s *State) surroundings(query AABB, w World) Surrounds { + minY, maxY := int(math.Floor(query.Y.Min))-1, int(math.Floor(query.Y.Max))+1 + minZ, maxZ := int(math.Floor(query.Z.Min)), int(math.Floor(query.Z.Max))+1 + minX, maxX := int(math.Floor(query.X.Min)), int(math.Floor(query.X.Max))+1 + + out := Surrounds(make([]AABB, 0, abs(maxY, minY)*abs(maxZ, minZ)*abs(maxX, minX)*2)) + for y := minY; y < maxY; y++ { + for z := minZ; z < maxZ; z++ { + for x := minX; x < maxX; x++ { + bStateID := w.GetBlockStatus(x, y, z) + if !path.AirLikeBlock(bStateID) { + bbs, err := shape.CollisionBoxes(bStateID) + if err != nil { + panic(err) + } + for _, box := range bbs { + out = append(out, AABB{ + X: MinMax{Min: box.Min.X, Max: box.Max.X}, + Y: MinMax{Min: box.Min.Y, Max: box.Max.Y}, + Z: MinMax{Min: box.Min.Z, Max: box.Max.Z}, + Block: bStateID, + }.Offset(float64(x), float64(y), float64(z))) + } + } + } + } + } + return out +} + +func (s *State) BB() AABB { + return AABB{ + X: MinMax{Min: -playerWidth / 2, Max: playerWidth / 2}, + Y: MinMax{Max: playerHeight}, + Z: MinMax{Min: -playerWidth / 2, Max: playerWidth / 2}, + }.Offset(s.Pos.X, s.Pos.Y, s.Pos.Z) +} + +func (s *State) Position() player.Pos { + return player.Pos{ + X: s.Pos.X, Y: s.Pos.Y, Z: s.Pos.Z, + Yaw: float32(s.Yaw), Pitch: float32(s.Pitch), + OnGround: s.onGround, + } +} + +func (s *State) Tick(input path.Inputs, w World) error { + s.tick++ + if !s.Run { + return nil + } + + var inertia = inertia + var acceleration = acceleration + if below := w.GetBlockStatus(int(math.Floor(s.Pos.X)), int(math.Floor(s.Pos.Y))-1, int(math.Floor(s.Pos.Z))); s.onGround && !path.AirLikeBlock(below) { + inertia *= slipperiness + acceleration = 0.1 * (0.1627714 / (inertia * inertia * inertia)) + } + + s.tickVelocity(input, inertia, acceleration, w) + s.tickPosition(w) + + if path.IsLadder(w.GetBlockStatus(int(math.Floor(s.Pos.X)), int(math.Floor(s.Pos.Y)), int(math.Floor(s.Pos.Z)))) && s.collision.horizontal { + s.Vel.Y = ladderClimbSpeed + } + + // Gravity + s.Vel.Y -= gravity + // Drag & friction. + s.Vel.Y *= drag + s.Vel.X *= inertia + s.Vel.Z *= inertia + return nil +} + +func (s *State) tickVelocity(input path.Inputs, inertia, acceleration float64, w World) { + + // Deadzone velocities when they get too low. + if math.Abs(s.Vel.X) < resetVel { + s.Vel.X = 0 + } + if math.Abs(s.Vel.Y) < resetVel { + s.Vel.Y = 0 + } + if math.Abs(s.Vel.Z) < resetVel { + s.Vel.Z = 0 + } + + s.applyLookInputs(input) + s.applyPosInputs(input, acceleration, inertia) + + lower := w.GetBlockStatus(int(math.Floor(s.Pos.X)), int(math.Floor(s.Pos.Y)), int(math.Floor(s.Pos.Z))) + if path.IsLadder(lower) { + s.Vel.X = math.Min(math.Max(-ladderMaxSpeed, s.Vel.X), ladderMaxSpeed) + s.Vel.Z = math.Min(math.Max(-ladderMaxSpeed, s.Vel.Z), ladderMaxSpeed) + s.Vel.Y = math.Min(math.Max(-ladderMaxSpeed, s.Vel.Y), ladderMaxSpeed) + } +} + +func (s *State) applyLookInputs(input path.Inputs) { + if !math.IsNaN(input.Yaw) { + errYaw := math.Min(math.Max(modYaw(input.Yaw, s.Yaw), -maxYawChange), maxYawChange) + s.Yaw += errYaw + } + errPitch := math.Min(math.Max(input.Pitch-s.Pitch, -maxPitchChange), maxPitchChange) + s.Pitch += errPitch +} + +func (s *State) applyPosInputs(input path.Inputs, acceleration, inertia float64) { + // fmt.Println(input.Jump, s.lastJump, s.onGround) + if input.Jump && s.lastJump+minJumpTicks < s.tick && s.onGround { + s.lastJump = s.tick + s.Vel.Y = 0.42 + } + + speed := math.Sqrt(input.ThrottleX*input.ThrottleX + input.ThrottleZ*input.ThrottleZ) + if speed < 0.01 { + return + } + speed = acceleration / math.Max(speed, 1) + + input.ThrottleX *= speed + input.ThrottleZ *= speed + + s.Vel.X += input.ThrottleX + s.Vel.Z += input.ThrottleZ +} + +func (s *State) tickPosition(w World) { + // fmt.Printf("TICK POSITION: %0.2f, %0.2f, %0.2f - (%0.2f, %0.2f, %0.2f)\n", s.Pos.X, s.Pos.Y, s.Pos.Z, s.Vel.X, s.Vel.Y, s.Vel.Z) + + player, newVel := s.computeCollisionYXZ(s.BB(), s.BB().Offset(s.Vel.X, s.Vel.Y, s.Vel.Z), s.Vel, w) + //fmt.Printf("offset = %0.2f, %0.2f, %0.2f\n", player.X.Min-s.Pos.X, player.Y.Min-s.Pos.Y, player.Z.Min-s.Pos.Z) + + //fmt.Printf("onGround = %v, s.Vel.Y = %0.3f, newVel.Y = %0.3f\n", s.onGround, s.Vel.Y, newVel.Y) + if s.onGround || (s.Vel.Y != newVel.Y && s.Vel.Y < 0) { + bb := s.BB() + //fmt.Printf("Player pos = %0.2f, %0.2f, %0.2f\n", bb.X.Min, bb.Y.Min, bb.Z.Min) + surroundings := s.surroundings(bb.Offset(s.Vel.X, stepHeight, s.Vel.Y), w) + outVel := s.Vel + + outVel.Y = stepHeight + for _, b := range surroundings { + outVel.Y = b.YOffset(bb, outVel.Y) + } + bb = bb.Offset(0, outVel.Y, 0) + for _, b := range surroundings { + outVel.X = b.XOffset(bb, outVel.X) + } + bb = bb.Offset(outVel.X, 0, 0) + for _, b := range surroundings { + outVel.Z = b.ZOffset(bb, outVel.Z) + } + bb = bb.Offset(0, 0, outVel.Z) + //fmt.Printf("Post-collision = %0.2f, %0.2f, %0.2f\n", bb.X.Min, bb.Y.Min, bb.Z.Min) + + outVel.Y *= -1 + // Lower the player back down to be on the ground. + for _, b := range surroundings { + outVel.Y = b.YOffset(bb, outVel.Y) + } + bb = bb.Offset(0, outVel.Y, 0) + //fmt.Printf("Post-lower = %0.2f, %0.2f, %0.2f\n", bb.X.Min, bb.Y.Min, bb.Z.Min) + + oldMove := newVel.X*newVel.X + newVel.Z*newVel.Z + newMove := outVel.X*outVel.X + outVel.Z*outVel.Z + // fmt.Printf("oldMove = %0.2f, newMove = %0.2f\n", oldMove*1000, newMove*1000) + if oldMove >= newMove || outVel.Y <= (0.000002-stepHeight) { + // fmt.Println("nope") + } else { + player = bb + newVel = outVel + } + } + + // Update flags. + s.Pos.X = player.X.Min + playerWidth/2 + s.Pos.Y = player.Y.Min + s.Pos.Z = player.Z.Min + playerWidth/2 + s.collision.horizontal = newVel.X != s.Vel.X || newVel.Z != s.Vel.Z + s.collision.vertical = newVel.Y != s.Vel.Y + s.onGround = s.collision.vertical && s.Vel.Y < 0 + s.Vel = newVel +} + +func modYaw(new, old float64) float64 { + delta := math.Mod(new-old, 360) + if delta > 180 { + delta = 180 - delta + } else if delta < -180 { + delta += 360 + } + // fmt.Printf("(%.2f - %.2f) = %.2f\n", new, old, delta) + return delta +} + +func (s *State) computeCollisionYXZ(bb, query AABB, vel path.Point, w World) (outBB AABB, outVel path.Point) { + surroundings := s.surroundings(query, w) + outVel = vel + + for _, b := range surroundings { + outVel.Y = b.YOffset(bb, outVel.Y) + } + bb = bb.Offset(0, outVel.Y, 0) + for _, b := range surroundings { + outVel.X = b.XOffset(bb, outVel.X) + } + bb = bb.Offset(outVel.X, 0, 0) + for _, b := range surroundings { + outVel.Z = b.ZOffset(bb, outVel.Z) + } + bb = bb.Offset(0, 0, outVel.Z) + return bb, outVel +} + +// AtLookTarget returns true if the player look position is actually at the +// given pitch and yaw. +func (s *State) AtLookTarget(yaw, pitch float64) bool { + dYaw, dPitch := math.Abs(modYaw(yaw, s.Yaw)), math.Abs(pitch-s.Pitch) + return dYaw <= 0.8 && dPitch <= 1.1 +} diff --git a/bot/settings.go b/bot/settings.go index 66b71a2..ae64edd 100644 --- a/bot/settings.go +++ b/bot/settings.go @@ -9,6 +9,7 @@ type Settings struct { DisplayedSkinParts uint8 //皮肤显示 MainHand int //主手 ReceiveMap bool //接收地图数据 + Brand string // The brand string presented to the server. } /* @@ -33,4 +34,5 @@ var DefaultSettings = Settings{ DisplayedSkinParts: Jacket | LeftSleeve | RightSleeve | LeftPantsLeg | RightPantsLeg | Hat, MainHand: 1, ReceiveMap: true, + Brand: "vanilla", } diff --git a/bot/world/bitarray.go b/bot/world/bitarray.go new file mode 100644 index 0000000..cd8f9af --- /dev/null +++ b/bot/world/bitarray.go @@ -0,0 +1,38 @@ +package world + +// bitArray implements a bitfield array where values are packed into uint64 +// values. If the next value does not fit into remaining space, the remaining +// space of a uint64 is unused. +type bitArray struct { + width uint // bit width of each value + valsPerElement uint // number of values which fit into a single uint64. + + data []uint64 +} + +// Size returns the number of elements that can fit into the bit array. +func (b *bitArray) Size() int { + return int(b.valsPerElement) * len(b.data) +} + +func (b *bitArray) Set(idx, val uint) { + var ( + arrayIdx = idx / b.valsPerElement + startBit = (idx % b.valsPerElement) * b.width + mask = ^uint64((1<> offset +} + +func valsPerBitArrayElement(bitsPerValue uint) uint { + return uint(64 / bitsPerValue) +} diff --git a/bot/world/bitarray_test.go b/bot/world/bitarray_test.go new file mode 100644 index 0000000..cb45060 --- /dev/null +++ b/bot/world/bitarray_test.go @@ -0,0 +1,50 @@ +package world + +import ( + "encoding/binary" + "encoding/hex" + "testing" +) + +func TestBitArrayBasic(t *testing.T) { + a := bitArray{ + width: 5, + valsPerElement: valsPerBitArrayElement(5), + data: make([]uint64, 5), + } + + if got, want := a.Size(), 12*5; got != want { + t.Errorf("size = %d, want %d", got, want) + } + + a.Set(0, 4) + if v := a.Get(0); v != 4 { + t.Errorf("v[0] = %d, want 4", v) + } + a.Set(12, 8) + if v := a.Get(12); v != 8 { + t.Errorf("v[12] = %d, want 8", v) + } +} + +func TestBitArrayHardcoded(t *testing.T) { + d1, _ := hex.DecodeString("0020863148418841") + d2, _ := hex.DecodeString("01018A7260F68C87") + + a := bitArray{ + width: 5, + valsPerElement: valsPerBitArrayElement(5), + data: []uint64{binary.BigEndian.Uint64(d1), binary.BigEndian.Uint64(d2)}, + } + + if got, want := a.Size(), 12*2; got != want { + t.Errorf("size = %d, want %d", got, want) + } + + want := []uint{1, 2, 2, 3, 4, 4, 5, 6, 6, 4, 8, 0, 7, 4, 3, 13, 15, 16, 9, 14, 10, 12, 0, 2} + for idx, want := range want { + if got := a.Get(uint(idx)); got != want { + t.Errorf("v[%d] = %d, want %d", idx, got, want) + } + } +} diff --git a/bot/world/chunk.go b/bot/world/chunk.go index bf0342a..8caafc3 100644 --- a/bot/world/chunk.go +++ b/bot/world/chunk.go @@ -3,10 +3,14 @@ package world import ( "bytes" "fmt" - "github.com/Tnze/go-mc/data" + "math" + + "github.com/Tnze/go-mc/data/block" pk "github.com/Tnze/go-mc/net/packet" ) +const maxPaletteBits = 8 + // DecodeChunkColumn decode the chunk data structure. // If decoding went error, successful decoded data will be returned. func DecodeChunkColumn(mask int32, data []byte) (*Chunk, error) { @@ -26,35 +30,35 @@ func DecodeChunkColumn(mask int32, data []byte) (*Chunk, error) { return &c, nil } -func perBits(BitsPerBlock byte) int { +func perBits(bpb byte) uint { switch { - case BitsPerBlock <= 4: + case bpb <= 4: return 4 - case BitsPerBlock < 9: - return int(BitsPerBlock) + case bpb <= maxPaletteBits: + return uint(bpb) default: - return data.BitsPerBlock // DefaultBitsPerBlock + return uint(block.BitsPerBlock) } } func readSection(data pk.DecodeReader) (s Section, err error) { - var BlockCount pk.Short - if err := BlockCount.Decode(data); err != nil { - return nil, fmt.Errorf("read block count error: %w", err) + var nonAirBlockCount pk.Short + if err := nonAirBlockCount.Decode(data); err != nil { + return nil, fmt.Errorf("block count: %w", err) } var bpb pk.UnsignedByte if err := bpb.Decode(data); err != nil { - return nil, fmt.Errorf("read bits per block error: %w", err) + return nil, fmt.Errorf("bits per block: %w", err) } // If bpb values greater than or equal to 9, use directSection. // Otherwise use paletteSection. var palettes []BlockStatus var palettesIndex map[BlockStatus]int - if bpb < 9 { + if bpb <= maxPaletteBits { // read palettes var length pk.VarInt if err := length.Decode(data); err != nil { - return nil, fmt.Errorf("read palettes length error: %w", err) + return nil, fmt.Errorf("palette length: %w", err) } palettes = make([]BlockStatus, length) palettesIndex = make(map[BlockStatus]int, length) @@ -85,8 +89,15 @@ func readSection(data pk.DecodeReader) (s Section, err error) { dataArray[i] = uint64(v) } - sec := directSection{bpb: perBits(byte(bpb)), data: dataArray} - if bpb < 9 { + width := perBits(byte(bpb)) + sec := directSection{ + bitArray{ + width: width, + valsPerElement: valsPerBitArrayElement(width), + data: dataArray, + }, + } + if bpb <= maxPaletteBits { return &paletteSection{ palette: palettes, palettesIndex: palettesIndex, @@ -98,46 +109,38 @@ func readSection(data pk.DecodeReader) (s Section, err error) { } type directSection struct { - bpb int - data []uint64 + bitArray } -func (d *directSection) GetBlock(offset int) BlockStatus { - offset *= d.bpb - padding := offset % 64 - block := uint32(d.data[offset/64] >> padding) - if padding > 64-d.bpb { - l := 64 - padding - block |= uint32(d.data[offset/64+1] << l) - } - return BlockStatus(block & (1< 64-d.bpb { - l := padding - (64 - d.bpb) - const maxUint64 = 1<<64 - 1 - d.data[offset/64+1] = d.data[offset/64+1]&(maxUint64<>(64-padding) - } +func (d *directSection) SetBlock(offset uint, s BlockStatus) { + d.Set(offset, uint(s)) } func (d *directSection) CanContain(s BlockStatus) bool { - return s <= (1<>8) & 0xff), int((p>>16) & 0xff), int(p&0xff) +} + +func (p TilePosition) String() string { + x, y, z := p.Pos() + return fmt.Sprintf("(%d, %d, %d)", x, y, z) +} + +func ToTilePos(x, y, z int) TilePosition { + return TilePosition((y&0xff) << 16 | (x&15) << 8 | (z&15)) +} diff --git a/bot/world/world.go b/bot/world/world.go index 58a7e89..9089233 100644 --- a/bot/world/world.go +++ b/bot/world/world.go @@ -1,77 +1,15 @@ package world import ( + "sync" + "github.com/Tnze/go-mc/bot/world/entity" ) // World record all of the things in the world where player at type World struct { - Entities map[int32]entity.Entity - Chunks map[ChunkLoc]*Chunk -} - -// Chunk store a 256*16*16 column blocks -type Chunk struct { - Sections [16]Section -} - -// Section store a 16*16*16 cube blocks -type Section interface { - // GetBlock return block status, offset can be calculate by SectionOffset. - GetBlock(offset int) BlockStatus - // SetBlock is the reverse operation of GetBlock. - SetBlock(offset int, s BlockStatus) -} - -func SectionOffset(x, y, z int) (offset int) { - // According to wiki.vg: Data Array is given for each block with increasing x coordinates, - // within rows of increasing z coordinates, within layers of increasing y coordinates. - // So offset equals to ( x*16^0 + z*16^1 + y*16^2 )*(bits per block). - return x + z*16 + y*16*16 -} - -type BlockStatus uint32 - -type ChunkLoc struct { - X, Z int -} - -// //Entity 表示一个实体 -// type Entity interface { -// EntityID() int32 -// } - -// //Face is a face of a block -// type Face byte - -// // All six faces in a block -// const ( -// Bottom Face = iota -// Top -// North -// South -// West -// East -// ) - -// getBlock return the block in the position (x, y, z) -func (w *World) GetBlockStatus(x, y, z int) BlockStatus { - // Use n>>4 rather then n/16. It acts wrong if n<0. - c := w.Chunks[ChunkLoc{x >> 4, z >> 4}] - if c != nil { - // (n&(16-1)) == (n<0 ? n%16+16 : n%16) - if sec := c.Sections[y>>4]; sec != nil { - return sec.GetBlock(SectionOffset(x&15, y&15, z&15)) - } - } - return 0 -} - -// func (b Block) String() string { -// return blockNameByID[b.id] -// } - -//LoadChunk load chunk at (x, z) -func (w *World) LoadChunk(x, z int, c *Chunk) { - w.Chunks[ChunkLoc{X: x, Z: z}] = c + entityLock sync.RWMutex + Entities map[int32]*entity.Entity + chunkLock sync.RWMutex + Chunks map[ChunkLoc]*Chunk } diff --git a/bot/world/world_chunk.go b/bot/world/world_chunk.go new file mode 100644 index 0000000..4157e90 --- /dev/null +++ b/bot/world/world_chunk.go @@ -0,0 +1,152 @@ +package world + +import ( + "github.com/Tnze/go-mc/bot/world/entity" + "github.com/Tnze/go-mc/data/block" + pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/net/ptypes" +) + +// Chunk store a 256*16*16 area of blocks, sharded on the Y axis into 16 +// sections. +type Chunk struct { + Sections [16]Section + TileEntities map[TilePosition]entity.BlockEntity +} + +// Section implements storage of blocks within a fixed 16*16*16 area. +type Section interface { + // GetBlock return block status, offset can be calculate by SectionOffset. + GetBlock(offset uint) BlockStatus + // SetBlock is the reverse operation of GetBlock. + SetBlock(offset uint, s BlockStatus) +} + +func sectionIdx(x, y, z int) uint { + return uint(((y & 15) << 8) | (z << 4) | x) +} + +type BlockStatus uint32 + +type ChunkLoc struct { + X, Z int +} + +// Signs returns a list of signs on the server within viewing range. +func (w *World) Signs() []entity.BlockEntity { + w.chunkLock.RLock() + defer w.chunkLock.RUnlock() + + out := make([]entity.BlockEntity, 0, 4) + for _, c := range w.Chunks { + for _, e := range c.TileEntities { + if e.ID == "minecraft:sign" { + out = append(out, e) + } + } + } + + return out +} + +// GetBlockStatus return the state ID of the block at the given position. +func (w *World) GetBlockStatus(x, y, z int) BlockStatus { + w.chunkLock.RLock() + defer w.chunkLock.RUnlock() + + c := w.Chunks[ChunkLoc{x >> 4, z >> 4}] + if c != nil && y >= 0 { + if sec := c.Sections[y>>4]; sec != nil { + return sec.GetBlock(sectionIdx(x&15, y&15, z&15)) + } + } + return 0 +} + +// UnloadChunk unloads a chunk from the world. +func (w *World) UnloadChunk(loc ChunkLoc) { + w.chunkLock.Lock() + delete(w.Chunks, loc) + w.chunkLock.Unlock() +} + +// UnaryBlockUpdate updates the block at the specified position with a new +// state ID. +func (w *World) UnaryBlockUpdate(pos pk.Position, bStateID BlockStatus) bool { + w.chunkLock.Lock() + defer w.chunkLock.Unlock() + + c := w.Chunks[ChunkLoc{X: pos.X >> 4, Z: pos.Z >> 4}] + if c == nil { + return false + } + sIdx, bIdx := pos.Y>>4, sectionIdx(pos.X&15, pos.Y&15, pos.Z&15) + + if sec := c.Sections[sIdx]; sec == nil { + sec = newSectionWithSize(uint(block.BitsPerBlock)) + sec.SetBlock(bIdx, bStateID) + c.Sections[sIdx] = sec + } else { + tp := ToTilePos(pos.X, pos.Y, pos.Z) + if _, ok := c.TileEntities[tp]; ok && sec.GetBlock(bIdx) != bStateID { + delete(c.TileEntities, tp) + } + sec.SetBlock(bIdx, bStateID) + } + return true +} + +// MultiBlockUpdate updates a packed specification of blocks within a single +// section of a chunk. +func (w *World) MultiBlockUpdate(loc ChunkLoc, sectionY int, blocks []pk.VarLong) bool { + w.chunkLock.Lock() + defer w.chunkLock.Unlock() + + c := w.Chunks[loc] + if c == nil { + return false // not loaded + } + + sec := c.Sections[sectionY] + if sec == nil { + sec = newSectionWithSize(uint(block.BitsPerBlock)) + c.Sections[sectionY] = sec + } + + for _, b := range blocks { + var ( + bStateID = BlockStatus(b >> 12) + x, z, y = (b >> 8) & 0xf, (b >> 4) & 0xf, b & 0xf + bIdx = sectionIdx(int(x&15), int(y&15), int(z&15)) + tp = ToTilePos(int(x), int(y), int(z)) + ) + if _, ok := c.TileEntities[tp]; ok && sec.GetBlock(bIdx) != bStateID { + delete(c.TileEntities, tp) + } + sec.SetBlock(bIdx, bStateID) + } + + return true +} + +//LoadChunk adds the given chunk to the world. +func (w *World) LoadChunk(x, z int, c *Chunk) { + w.chunkLock.Lock() + w.Chunks[ChunkLoc{X: x, Z: z}] = c + w.chunkLock.Unlock() +} + +func (w *World) TileEntityUpdate(pkt ptypes.TileEntityData) error { + w.chunkLock.Lock() + defer w.chunkLock.Unlock() + c := w.Chunks[ChunkLoc{X: pkt.Pos.X >> 4, Z: pkt.Pos.Z >> 4}] + if c == nil { + return nil + } + + switch pkt.Action { + case 9: // Sign update + c.TileEntities[ToTilePos(pkt.Pos.X, pkt.Pos.Y, pkt.Pos.Z)] = pkt.Data + } + return nil +} diff --git a/bot/world/world_entity.go b/bot/world/world_entity.go new file mode 100644 index 0000000..79e454b --- /dev/null +++ b/bot/world/world_entity.go @@ -0,0 +1,167 @@ +package world + +import ( + "fmt" + + "github.com/Tnze/go-mc/bot/world/entity" + e "github.com/Tnze/go-mc/data/entity" + pk "github.com/Tnze/go-mc/net/packet" + "github.com/Tnze/go-mc/net/ptypes" + "github.com/google/uuid" +) + +// PlayerEntities returns a list of players on the server within viewing range. +func (w *World) PlayerEntities() []entity.Entity { + w.entityLock.RLock() + defer w.entityLock.RUnlock() + out := make([]entity.Entity, 0, 12) + for _, ent := range w.Entities { + if ent.Base.ID == e.Player.ID { + out = append(out, *ent) + } + } + return out +} + +// OnSpawnEntity should be called when a SpawnEntity packet +// is recieved. +func (w *World) OnSpawnEntity(pkt ptypes.SpawnEntity) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + base, ok := e.ByID[e.ID(pkt.Type)] + if !ok { + return fmt.Errorf("unknown entity ID %v", pkt.Type) + } + + w.Entities[int32(pkt.ID)] = &entity.Entity{ + ID: int32(pkt.ID), + Base: base, + Data: int32(pkt.Data), + UUID: uuid.UUID(pkt.UUID), + X: float64(pkt.X), + Y: float64(pkt.Y), + Z: float64(pkt.Z), + Pitch: int8(pkt.Pitch), + Yaw: int8(pkt.Yaw), + VelX: int16(pkt.VelX), + VelY: int16(pkt.VelY), + VelZ: int16(pkt.VelZ), + } + + return nil +} + +// OnSpawnLivingEntity should be called when a SpawnLivingEntity packet +// is recieved. +func (w *World) OnSpawnLivingEntity(pkt ptypes.SpawnLivingEntity) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + base, ok := e.ByID[e.ID(pkt.Type)] + if !ok { + return fmt.Errorf("unknown entity ID %v", pkt.Type) + } + + // fmt.Printf("SpawnLivingEntity %q\n", base.Name) + w.Entities[int32(pkt.ID)] = &entity.Entity{ + ID: int32(pkt.ID), + Base: base, + UUID: uuid.UUID(pkt.UUID), + X: float64(pkt.X), + Y: float64(pkt.Y), + Z: float64(pkt.Z), + Pitch: int8(pkt.Pitch), + Yaw: int8(pkt.Yaw), + VelX: int16(pkt.VelX), + VelY: int16(pkt.VelY), + VelZ: int16(pkt.VelZ), + HeadPitch: int8(pkt.HeadPitch), + } + return nil +} + +// OnSpawnPlayer should be called when a SpawnPlayer packet +// is recieved. +func (w *World) OnSpawnPlayer(pkt ptypes.SpawnPlayer) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + // fmt.Printf("SpawnPlayer %v\n", pkt) + w.Entities[int32(pkt.ID)] = &entity.Entity{ + ID: int32(pkt.ID), + Base: &e.Player, + UUID: uuid.UUID(pkt.UUID), + X: float64(pkt.X), + Y: float64(pkt.Y), + Z: float64(pkt.Z), + Pitch: int8(pkt.Pitch), + Yaw: int8(pkt.Yaw), + } + return nil +} + +// OnEntityPosUpdate should be called when an EntityPosition packet +// is recieved. +func (w *World) OnEntityPosUpdate(pkt ptypes.EntityPosition) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + ent, ok := w.Entities[int32(pkt.ID)] + if !ok { + return fmt.Errorf("cannot handle position update for unknown entity %d", pkt.ID) + } + + ent.X += float64(pkt.X) / (128 * 32) + ent.Y += float64(pkt.Y) / (128 * 32) + ent.Z += float64(pkt.Z) / (128 * 32) + ent.OnGround = bool(pkt.OnGround) + return nil +} + +// OnEntityPosLookUpdate should be called when an EntityPositionLook packet +// is recieved. +func (w *World) OnEntityPosLookUpdate(pkt ptypes.EntityPositionLook) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + ent, ok := w.Entities[int32(pkt.ID)] + if !ok { + return fmt.Errorf("cannot handle position look update for unknown entity %d", pkt.ID) + } + + ent.X += float64(pkt.X) / (128 * 32) + ent.Y += float64(pkt.Y) / (128 * 32) + ent.Z += float64(pkt.Z) / (128 * 32) + ent.OnGround = bool(pkt.OnGround) + ent.Pitch, ent.Yaw = int8(pkt.Pitch), int8(pkt.Yaw) + return nil +} + +// OnEntityLookUpdate should be called when an EntityRotation packet +// is recieved. +func (w *World) OnEntityLookUpdate(pkt ptypes.EntityRotation) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + ent, ok := w.Entities[int32(pkt.ID)] + if !ok { + return fmt.Errorf("cannot handle look update for unknown entity %d", pkt.ID) + } + + ent.Pitch, ent.Yaw = int8(pkt.Pitch), int8(pkt.Yaw) + ent.OnGround = bool(pkt.OnGround) + return nil +} + +// OnEntityDestroy should be called when a DestroyEntities packet +// is recieved. +func (w *World) OnEntityDestroy(eIDs []pk.VarInt) error { + w.entityLock.Lock() + defer w.entityLock.Unlock() + + for _, eID := range eIDs { + delete(w.Entities, int32(eID)) + } + return nil +} diff --git a/cmd/autofish/autofish.go b/cmd/autofish/autofish.go index 611090d..633c3d2 100644 --- a/cmd/autofish/autofish.go +++ b/cmd/autofish/autofish.go @@ -1,10 +1,11 @@ package main import ( - "github.com/google/uuid" "log" "time" + "github.com/google/uuid" + "github.com/Tnze/go-mc/bot" "github.com/Tnze/go-mc/chat" _ "github.com/Tnze/go-mc/data/lang/en-us" diff --git a/cmd/daze/daze.go b/cmd/daze/daze.go index 7ede457..c656245 100644 --- a/cmd/daze/daze.go +++ b/cmd/daze/daze.go @@ -2,9 +2,10 @@ package main import ( "bytes" - "github.com/google/uuid" "log" + "github.com/google/uuid" + "github.com/Tnze/go-mc/bot" "github.com/Tnze/go-mc/chat" _ "github.com/Tnze/go-mc/data/lang/en-us" diff --git a/cmd/luncher/luncher.go b/cmd/luncher/luncher.go index 9411bb8..f159049 100644 --- a/cmd/luncher/luncher.go +++ b/cmd/luncher/luncher.go @@ -3,8 +3,9 @@ package main import ( "flag" "fmt" - "github.com/Tnze/go-mc/yggdrasil" "os" + + "github.com/Tnze/go-mc/yggdrasil" ) var user = flag.String("user", "", "Can be an email address or player name for unmigrated accounts") diff --git a/cmd/simpleServer/main.go b/cmd/simpleServer/main.go index e3daffb..61e8f25 100644 --- a/cmd/simpleServer/main.go +++ b/cmd/simpleServer/main.go @@ -2,12 +2,13 @@ package main import ( + "log" + "github.com/Tnze/go-mc/bot" "github.com/Tnze/go-mc/data" "github.com/Tnze/go-mc/net" pk "github.com/Tnze/go-mc/net/packet" "github.com/google/uuid" - "log" ) const ProtocolVersion = 578 @@ -64,7 +65,7 @@ func handlePlaying(conn net.Conn, protocol int32) { } joinGame(conn) - conn.WritePacket(pk.Marshal(data.PlayerPositionAndLookClientbound, + conn.WritePacket(pk.Marshal(data.PositionClientbound, // https://wiki.vg/Protocol#Player_Position_And_Look_.28clientbound.29 pk.Double(0), pk.Double(0), pk.Double(0), // XYZ pk.Float(0), pk.Float(0), // Yaw Pitch @@ -139,7 +140,7 @@ func loginSuccess(conn net.Conn, name string, uuid uuid.UUID) error { } func joinGame(conn net.Conn) error { - return conn.WritePacket(pk.Marshal(data.JoinGame, + return conn.WritePacket(pk.Marshal(data.Login, pk.Int(0), // EntityID pk.UnsignedByte(1), // Gamemode pk.Int(0), // Dimension diff --git a/data/block/block.go b/data/block/block.go new file mode 100644 index 0000000..ec9097c --- /dev/null +++ b/data/block/block.go @@ -0,0 +1,18681 @@ +// Package block stores information about blocks in Minecraft. +package block + +import ( + "math" +) + +// BitsPerBlock indicates how many bits are needed to represent all possible +// block states. This value is used to determine the size of the global palette. +var BitsPerBlock = int(math.Ceil(math.Log2(float64(len(StateID))))) + +// ID describes the numeric ID of a block. +type ID uint32 + +// Block describes information about a type of block. +type Block struct { + ID ID + DisplayName string + Name string + + Hardness float64 + Diggable bool + DropIDs []uint32 + NeedsTools map[uint32]bool + + MinStateID uint32 + MaxStateID uint32 + + Transparent bool + FilterLightLevel int + EmitLightLevel int +} + +var ( + Air = Block{ID: 0, DisplayName: "Air", Name: "air", Hardness: 0, Diggable: true, DropIDs: []uint32{0}, NeedsTools: map[uint32]bool{}, MinStateID: 0, MaxStateID: 0, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Stone = Block{ID: 1, DisplayName: "Stone", Name: "stone", Hardness: 1.5, Diggable: true, DropIDs: []uint32{1}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 1, MaxStateID: 1, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Granite = Block{ID: 2, DisplayName: "Granite", Name: "granite", Hardness: 1.5, Diggable: true, DropIDs: []uint32{2}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 2, MaxStateID: 2, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedGranite = Block{ID: 3, DisplayName: "Polished Granite", Name: "polished_granite", Hardness: 1.5, Diggable: true, DropIDs: []uint32{3}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 3, MaxStateID: 3, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Diorite = Block{ID: 4, DisplayName: "Diorite", Name: "diorite", Hardness: 1.5, Diggable: true, DropIDs: []uint32{4}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 4, MaxStateID: 4, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedDiorite = Block{ID: 5, DisplayName: "Polished Diorite", Name: "polished_diorite", Hardness: 1.5, Diggable: true, DropIDs: []uint32{5}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5, MaxStateID: 5, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Andesite = Block{ID: 6, DisplayName: "Andesite", Name: "andesite", Hardness: 1.5, Diggable: true, DropIDs: []uint32{6}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6, MaxStateID: 6, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedAndesite = Block{ID: 7, DisplayName: "Polished Andesite", Name: "polished_andesite", Hardness: 1.5, Diggable: true, DropIDs: []uint32{7}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 7, MaxStateID: 7, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GrassBlock = Block{ID: 8, DisplayName: "Grass Block", Name: "grass_block", Hardness: 0.6, Diggable: true, DropIDs: []uint32{8}, NeedsTools: map[uint32]bool{}, MinStateID: 8, MaxStateID: 9, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Dirt = Block{ID: 9, DisplayName: "Dirt", Name: "dirt", Hardness: 0.5, Diggable: true, DropIDs: []uint32{9}, NeedsTools: map[uint32]bool{}, MinStateID: 10, MaxStateID: 10, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CoarseDirt = Block{ID: 10, DisplayName: "Coarse Dirt", Name: "coarse_dirt", Hardness: 0.5, Diggable: true, DropIDs: []uint32{10}, NeedsTools: map[uint32]bool{}, MinStateID: 11, MaxStateID: 11, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Podzol = Block{ID: 11, DisplayName: "Podzol", Name: "podzol", Hardness: 0.5, Diggable: true, DropIDs: []uint32{11}, NeedsTools: map[uint32]bool{}, MinStateID: 12, MaxStateID: 13, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Cobblestone = Block{ID: 12, DisplayName: "Cobblestone", Name: "cobblestone", Hardness: 2, Diggable: true, DropIDs: []uint32{14}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 14, MaxStateID: 14, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakPlanks = Block{ID: 13, DisplayName: "Oak Planks", Name: "oak_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{15}, NeedsTools: map[uint32]bool{}, MinStateID: 15, MaxStateID: 15, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SprucePlanks = Block{ID: 14, DisplayName: "Spruce Planks", Name: "spruce_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{16}, NeedsTools: map[uint32]bool{}, MinStateID: 16, MaxStateID: 16, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BirchPlanks = Block{ID: 15, DisplayName: "Birch Planks", Name: "birch_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{17}, NeedsTools: map[uint32]bool{}, MinStateID: 17, MaxStateID: 17, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + JunglePlanks = Block{ID: 16, DisplayName: "Jungle Planks", Name: "jungle_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{18}, NeedsTools: map[uint32]bool{}, MinStateID: 18, MaxStateID: 18, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + AcaciaPlanks = Block{ID: 17, DisplayName: "Acacia Planks", Name: "acacia_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{19}, NeedsTools: map[uint32]bool{}, MinStateID: 19, MaxStateID: 19, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DarkOakPlanks = Block{ID: 18, DisplayName: "Dark Oak Planks", Name: "dark_oak_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{20}, NeedsTools: map[uint32]bool{}, MinStateID: 20, MaxStateID: 20, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakSapling = Block{ID: 19, DisplayName: "Oak Sapling", Name: "oak_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{23}, NeedsTools: map[uint32]bool{}, MinStateID: 21, MaxStateID: 22, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceSapling = Block{ID: 20, DisplayName: "Spruce Sapling", Name: "spruce_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{24}, NeedsTools: map[uint32]bool{}, MinStateID: 23, MaxStateID: 24, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchSapling = Block{ID: 21, DisplayName: "Birch Sapling", Name: "birch_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{25}, NeedsTools: map[uint32]bool{}, MinStateID: 25, MaxStateID: 26, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleSapling = Block{ID: 22, DisplayName: "Jungle Sapling", Name: "jungle_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{26}, NeedsTools: map[uint32]bool{}, MinStateID: 27, MaxStateID: 28, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaSapling = Block{ID: 23, DisplayName: "Acacia Sapling", Name: "acacia_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{27}, NeedsTools: map[uint32]bool{}, MinStateID: 29, MaxStateID: 30, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakSapling = Block{ID: 24, DisplayName: "Dark Oak Sapling", Name: "dark_oak_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{28}, NeedsTools: map[uint32]bool{}, MinStateID: 31, MaxStateID: 32, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Bedrock = Block{ID: 25, DisplayName: "Bedrock", Name: "bedrock", Hardness: 0, Diggable: false, DropIDs: []uint32{29}, NeedsTools: map[uint32]bool{}, MinStateID: 33, MaxStateID: 33, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Water = Block{ID: 26, DisplayName: "Water", Name: "water", Hardness: 100, Diggable: false, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 34, MaxStateID: 49, Transparent: true, FilterLightLevel: 2, EmitLightLevel: 0} + Lava = Block{ID: 27, DisplayName: "Lava", Name: "lava", Hardness: 100, Diggable: false, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 50, MaxStateID: 65, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + Sand = Block{ID: 28, DisplayName: "Sand", Name: "sand", Hardness: 0.5, Diggable: true, DropIDs: []uint32{30}, NeedsTools: map[uint32]bool{}, MinStateID: 66, MaxStateID: 66, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedSand = Block{ID: 29, DisplayName: "Red Sand", Name: "red_sand", Hardness: 0.5, Diggable: true, DropIDs: []uint32{31}, NeedsTools: map[uint32]bool{}, MinStateID: 67, MaxStateID: 67, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Gravel = Block{ID: 30, DisplayName: "Gravel", Name: "gravel", Hardness: 0.6, Diggable: true, DropIDs: []uint32{32}, NeedsTools: map[uint32]bool{}, MinStateID: 68, MaxStateID: 68, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GoldOre = Block{ID: 31, DisplayName: "Gold Ore", Name: "gold_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{33}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 69, MaxStateID: 69, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + IronOre = Block{ID: 32, DisplayName: "Iron Ore", Name: "iron_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{34}, NeedsTools: map[uint32]bool{600: true, 605: true, 590: true}, MinStateID: 70, MaxStateID: 70, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CoalOre = Block{ID: 33, DisplayName: "Coal Ore", Name: "coal_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{35}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 71, MaxStateID: 71, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + NetherGoldOre = Block{ID: 34, DisplayName: "Nether Gold Ore", Name: "nether_gold_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{36}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 72, MaxStateID: 72, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakLog = Block{ID: 35, DisplayName: "Oak Log", Name: "oak_log", Hardness: 2, Diggable: true, DropIDs: []uint32{37}, NeedsTools: map[uint32]bool{}, MinStateID: 73, MaxStateID: 75, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SpruceLog = Block{ID: 36, DisplayName: "Spruce Log", Name: "spruce_log", Hardness: 2, Diggable: true, DropIDs: []uint32{38}, NeedsTools: map[uint32]bool{}, MinStateID: 76, MaxStateID: 78, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BirchLog = Block{ID: 37, DisplayName: "Birch Log", Name: "birch_log", Hardness: 2, Diggable: true, DropIDs: []uint32{39}, NeedsTools: map[uint32]bool{}, MinStateID: 79, MaxStateID: 81, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + JungleLog = Block{ID: 38, DisplayName: "Jungle Log", Name: "jungle_log", Hardness: 2, Diggable: true, DropIDs: []uint32{40}, NeedsTools: map[uint32]bool{}, MinStateID: 82, MaxStateID: 84, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + AcaciaLog = Block{ID: 39, DisplayName: "Acacia Log", Name: "acacia_log", Hardness: 2, Diggable: true, DropIDs: []uint32{41}, NeedsTools: map[uint32]bool{}, MinStateID: 85, MaxStateID: 87, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DarkOakLog = Block{ID: 40, DisplayName: "Dark Oak Log", Name: "dark_oak_log", Hardness: 2, Diggable: true, DropIDs: []uint32{42}, NeedsTools: map[uint32]bool{}, MinStateID: 88, MaxStateID: 90, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedSpruceLog = Block{ID: 41, DisplayName: "Stripped Spruce Log", Name: "stripped_spruce_log", Hardness: 2, Diggable: true, DropIDs: []uint32{46}, NeedsTools: map[uint32]bool{}, MinStateID: 91, MaxStateID: 93, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedBirchLog = Block{ID: 42, DisplayName: "Stripped Birch Log", Name: "stripped_birch_log", Hardness: 2, Diggable: true, DropIDs: []uint32{47}, NeedsTools: map[uint32]bool{}, MinStateID: 94, MaxStateID: 96, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedJungleLog = Block{ID: 43, DisplayName: "Stripped Jungle Log", Name: "stripped_jungle_log", Hardness: 2, Diggable: true, DropIDs: []uint32{48}, NeedsTools: map[uint32]bool{}, MinStateID: 97, MaxStateID: 99, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedAcaciaLog = Block{ID: 44, DisplayName: "Stripped Acacia Log", Name: "stripped_acacia_log", Hardness: 2, Diggable: true, DropIDs: []uint32{49}, NeedsTools: map[uint32]bool{}, MinStateID: 100, MaxStateID: 102, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedDarkOakLog = Block{ID: 45, DisplayName: "Stripped Dark Oak Log", Name: "stripped_dark_oak_log", Hardness: 2, Diggable: true, DropIDs: []uint32{50}, NeedsTools: map[uint32]bool{}, MinStateID: 103, MaxStateID: 105, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedOakLog = Block{ID: 46, DisplayName: "Stripped Oak Log", Name: "stripped_oak_log", Hardness: 2, Diggable: true, DropIDs: []uint32{45}, NeedsTools: map[uint32]bool{}, MinStateID: 106, MaxStateID: 108, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakWood = Block{ID: 47, DisplayName: "Oak Wood", Name: "oak_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{61}, NeedsTools: map[uint32]bool{}, MinStateID: 109, MaxStateID: 111, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SpruceWood = Block{ID: 48, DisplayName: "Spruce Wood", Name: "spruce_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{62}, NeedsTools: map[uint32]bool{}, MinStateID: 112, MaxStateID: 114, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BirchWood = Block{ID: 49, DisplayName: "Birch Wood", Name: "birch_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{63}, NeedsTools: map[uint32]bool{}, MinStateID: 115, MaxStateID: 117, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + JungleWood = Block{ID: 50, DisplayName: "Jungle Wood", Name: "jungle_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{64}, NeedsTools: map[uint32]bool{}, MinStateID: 118, MaxStateID: 120, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + AcaciaWood = Block{ID: 51, DisplayName: "Acacia Wood", Name: "acacia_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{65}, NeedsTools: map[uint32]bool{}, MinStateID: 121, MaxStateID: 123, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DarkOakWood = Block{ID: 52, DisplayName: "Dark Oak Wood", Name: "dark_oak_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{66}, NeedsTools: map[uint32]bool{}, MinStateID: 124, MaxStateID: 126, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedOakWood = Block{ID: 53, DisplayName: "Stripped Oak Wood", Name: "stripped_oak_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{53}, NeedsTools: map[uint32]bool{}, MinStateID: 127, MaxStateID: 129, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedSpruceWood = Block{ID: 54, DisplayName: "Stripped Spruce Wood", Name: "stripped_spruce_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{54}, NeedsTools: map[uint32]bool{}, MinStateID: 130, MaxStateID: 132, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedBirchWood = Block{ID: 55, DisplayName: "Stripped Birch Wood", Name: "stripped_birch_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{55}, NeedsTools: map[uint32]bool{}, MinStateID: 133, MaxStateID: 135, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedJungleWood = Block{ID: 56, DisplayName: "Stripped Jungle Wood", Name: "stripped_jungle_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{56}, NeedsTools: map[uint32]bool{}, MinStateID: 136, MaxStateID: 138, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedAcaciaWood = Block{ID: 57, DisplayName: "Stripped Acacia Wood", Name: "stripped_acacia_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{57}, NeedsTools: map[uint32]bool{}, MinStateID: 139, MaxStateID: 141, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedDarkOakWood = Block{ID: 58, DisplayName: "Stripped Dark Oak Wood", Name: "stripped_dark_oak_wood", Hardness: 2, Diggable: true, DropIDs: []uint32{58}, NeedsTools: map[uint32]bool{}, MinStateID: 142, MaxStateID: 144, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakLeaves = Block{ID: 59, DisplayName: "Oak Leaves", Name: "oak_leaves", Hardness: 0.2, Diggable: true, DropIDs: []uint32{69}, NeedsTools: map[uint32]bool{}, MinStateID: 145, MaxStateID: 158, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceLeaves = Block{ID: 60, DisplayName: "Spruce Leaves", Name: "spruce_leaves", Hardness: 0.2, Diggable: true, DropIDs: []uint32{70}, NeedsTools: map[uint32]bool{}, MinStateID: 159, MaxStateID: 172, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchLeaves = Block{ID: 61, DisplayName: "Birch Leaves", Name: "birch_leaves", Hardness: 0.2, Diggable: true, DropIDs: []uint32{71}, NeedsTools: map[uint32]bool{}, MinStateID: 173, MaxStateID: 186, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleLeaves = Block{ID: 62, DisplayName: "Jungle Leaves", Name: "jungle_leaves", Hardness: 0.2, Diggable: true, DropIDs: []uint32{72}, NeedsTools: map[uint32]bool{}, MinStateID: 187, MaxStateID: 200, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaLeaves = Block{ID: 63, DisplayName: "Acacia Leaves", Name: "acacia_leaves", Hardness: 0.2, Diggable: true, DropIDs: []uint32{73}, NeedsTools: map[uint32]bool{}, MinStateID: 201, MaxStateID: 214, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakLeaves = Block{ID: 64, DisplayName: "Dark Oak Leaves", Name: "dark_oak_leaves", Hardness: 0.2, Diggable: true, DropIDs: []uint32{74}, NeedsTools: map[uint32]bool{}, MinStateID: 215, MaxStateID: 228, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Sponge = Block{ID: 65, DisplayName: "Sponge", Name: "sponge", Hardness: 0.6, Diggable: true, DropIDs: []uint32{75}, NeedsTools: map[uint32]bool{}, MinStateID: 229, MaxStateID: 229, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WetSponge = Block{ID: 66, DisplayName: "Wet Sponge", Name: "wet_sponge", Hardness: 0.6, Diggable: true, DropIDs: []uint32{76}, NeedsTools: map[uint32]bool{}, MinStateID: 230, MaxStateID: 230, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Glass = Block{ID: 67, DisplayName: "Glass", Name: "glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{77}, NeedsTools: map[uint32]bool{}, MinStateID: 231, MaxStateID: 231, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LapisOre = Block{ID: 68, DisplayName: "Lapis Lazuli Ore", Name: "lapis_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{78}, NeedsTools: map[uint32]bool{590: true, 600: true, 605: true}, MinStateID: 232, MaxStateID: 232, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LapisBlock = Block{ID: 69, DisplayName: "Lapis Lazuli Block", Name: "lapis_block", Hardness: 3, Diggable: true, DropIDs: []uint32{79}, NeedsTools: map[uint32]bool{590: true, 600: true, 605: true}, MinStateID: 233, MaxStateID: 233, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Dispenser = Block{ID: 70, DisplayName: "Dispenser", Name: "dispenser", Hardness: 3.5, Diggable: true, DropIDs: []uint32{80}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 234, MaxStateID: 245, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Sandstone = Block{ID: 71, DisplayName: "Sandstone", Name: "sandstone", Hardness: 0.8, Diggable: true, DropIDs: []uint32{81}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 246, MaxStateID: 246, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + ChiseledSandstone = Block{ID: 72, DisplayName: "Chiseled Sandstone", Name: "chiseled_sandstone", Hardness: 0.8, Diggable: true, DropIDs: []uint32{82}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 247, MaxStateID: 247, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CutSandstone = Block{ID: 73, DisplayName: "Cut Sandstone", Name: "cut_sandstone", Hardness: 0.8, Diggable: true, DropIDs: []uint32{83}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 248, MaxStateID: 248, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + NoteBlock = Block{ID: 74, DisplayName: "Note Block", Name: "note_block", Hardness: 0.8, Diggable: true, DropIDs: []uint32{84}, NeedsTools: map[uint32]bool{}, MinStateID: 249, MaxStateID: 1048, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WhiteBed = Block{ID: 75, DisplayName: "White Bed", Name: "white_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{716}, NeedsTools: map[uint32]bool{}, MinStateID: 1049, MaxStateID: 1064, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeBed = Block{ID: 76, DisplayName: "Orange Bed", Name: "orange_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{717}, NeedsTools: map[uint32]bool{}, MinStateID: 1065, MaxStateID: 1080, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaBed = Block{ID: 77, DisplayName: "Magenta Bed", Name: "magenta_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{718}, NeedsTools: map[uint32]bool{}, MinStateID: 1081, MaxStateID: 1096, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueBed = Block{ID: 78, DisplayName: "Light Blue Bed", Name: "light_blue_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{719}, NeedsTools: map[uint32]bool{}, MinStateID: 1097, MaxStateID: 1112, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowBed = Block{ID: 79, DisplayName: "Yellow Bed", Name: "yellow_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{720}, NeedsTools: map[uint32]bool{}, MinStateID: 1113, MaxStateID: 1128, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeBed = Block{ID: 80, DisplayName: "Lime Bed", Name: "lime_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{721}, NeedsTools: map[uint32]bool{}, MinStateID: 1129, MaxStateID: 1144, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkBed = Block{ID: 81, DisplayName: "Pink Bed", Name: "pink_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{722}, NeedsTools: map[uint32]bool{}, MinStateID: 1145, MaxStateID: 1160, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayBed = Block{ID: 82, DisplayName: "Gray Bed", Name: "gray_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{723}, NeedsTools: map[uint32]bool{}, MinStateID: 1161, MaxStateID: 1176, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayBed = Block{ID: 83, DisplayName: "Light Gray Bed", Name: "light_gray_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{724}, NeedsTools: map[uint32]bool{}, MinStateID: 1177, MaxStateID: 1192, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanBed = Block{ID: 84, DisplayName: "Cyan Bed", Name: "cyan_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{725}, NeedsTools: map[uint32]bool{}, MinStateID: 1193, MaxStateID: 1208, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleBed = Block{ID: 85, DisplayName: "Purple Bed", Name: "purple_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{726}, NeedsTools: map[uint32]bool{}, MinStateID: 1209, MaxStateID: 1224, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueBed = Block{ID: 86, DisplayName: "Blue Bed", Name: "blue_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{727}, NeedsTools: map[uint32]bool{}, MinStateID: 1225, MaxStateID: 1240, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownBed = Block{ID: 87, DisplayName: "Brown Bed", Name: "brown_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{728}, NeedsTools: map[uint32]bool{}, MinStateID: 1241, MaxStateID: 1256, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenBed = Block{ID: 88, DisplayName: "Green Bed", Name: "green_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{729}, NeedsTools: map[uint32]bool{}, MinStateID: 1257, MaxStateID: 1272, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedBed = Block{ID: 89, DisplayName: "Red Bed", Name: "red_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{730}, NeedsTools: map[uint32]bool{}, MinStateID: 1273, MaxStateID: 1288, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackBed = Block{ID: 90, DisplayName: "Black Bed", Name: "black_bed", Hardness: 0.2, Diggable: true, DropIDs: []uint32{731}, NeedsTools: map[uint32]bool{}, MinStateID: 1289, MaxStateID: 1304, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PoweredRail = Block{ID: 91, DisplayName: "Powered Rail", Name: "powered_rail", Hardness: 0.7, Diggable: true, DropIDs: []uint32{85}, NeedsTools: map[uint32]bool{}, MinStateID: 1305, MaxStateID: 1316, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DetectorRail = Block{ID: 92, DisplayName: "Detector Rail", Name: "detector_rail", Hardness: 0.7, Diggable: true, DropIDs: []uint32{86}, NeedsTools: map[uint32]bool{}, MinStateID: 1317, MaxStateID: 1328, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StickyPiston = Block{ID: 93, DisplayName: "Sticky Piston", Name: "sticky_piston", Hardness: 1.5, Diggable: true, DropIDs: []uint32{87}, NeedsTools: map[uint32]bool{}, MinStateID: 1329, MaxStateID: 1340, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Cobweb = Block{ID: 94, DisplayName: "Cobweb", Name: "cobweb", Hardness: 4, Diggable: true, DropIDs: []uint32{88}, NeedsTools: map[uint32]bool{583: true, 588: true, 593: true, 598: true, 603: true, 734: true}, MinStateID: 1341, MaxStateID: 1341, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Grass = Block{ID: 95, DisplayName: "Grass", Name: "grass", Hardness: 0, Diggable: true, DropIDs: []uint32{89}, NeedsTools: map[uint32]bool{}, MinStateID: 1342, MaxStateID: 1342, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Fern = Block{ID: 96, DisplayName: "Fern", Name: "fern", Hardness: 0, Diggable: true, DropIDs: []uint32{90}, NeedsTools: map[uint32]bool{}, MinStateID: 1343, MaxStateID: 1343, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBush = Block{ID: 97, DisplayName: "Dead Bush", Name: "dead_bush", Hardness: 0, Diggable: true, DropIDs: []uint32{91}, NeedsTools: map[uint32]bool{}, MinStateID: 1344, MaxStateID: 1344, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Seagrass = Block{ID: 98, DisplayName: "Seagrass", Name: "seagrass", Hardness: 0, Diggable: true, DropIDs: []uint32{92}, NeedsTools: map[uint32]bool{}, MinStateID: 1345, MaxStateID: 1345, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TallSeagrass = Block{ID: 99, DisplayName: "Tall Seagrass", Name: "tall_seagrass", Hardness: 0, Diggable: true, DropIDs: []uint32{92}, NeedsTools: map[uint32]bool{}, MinStateID: 1346, MaxStateID: 1347, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Piston = Block{ID: 100, DisplayName: "Piston", Name: "piston", Hardness: 1.5, Diggable: true, DropIDs: []uint32{94}, NeedsTools: map[uint32]bool{}, MinStateID: 1348, MaxStateID: 1359, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PistonHead = Block{ID: 101, DisplayName: "Piston Head", Name: "piston_head", Hardness: 1.5, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 1360, MaxStateID: 1383, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteWool = Block{ID: 102, DisplayName: "White Wool", Name: "white_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{95}, NeedsTools: map[uint32]bool{}, MinStateID: 1384, MaxStateID: 1384, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OrangeWool = Block{ID: 103, DisplayName: "Orange Wool", Name: "orange_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{96}, NeedsTools: map[uint32]bool{}, MinStateID: 1385, MaxStateID: 1385, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MagentaWool = Block{ID: 104, DisplayName: "Magenta Wool", Name: "magenta_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{97}, NeedsTools: map[uint32]bool{}, MinStateID: 1386, MaxStateID: 1386, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightBlueWool = Block{ID: 105, DisplayName: "Light Blue Wool", Name: "light_blue_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{98}, NeedsTools: map[uint32]bool{}, MinStateID: 1387, MaxStateID: 1387, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + YellowWool = Block{ID: 106, DisplayName: "Yellow Wool", Name: "yellow_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{99}, NeedsTools: map[uint32]bool{}, MinStateID: 1388, MaxStateID: 1388, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LimeWool = Block{ID: 107, DisplayName: "Lime Wool", Name: "lime_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{100}, NeedsTools: map[uint32]bool{}, MinStateID: 1389, MaxStateID: 1389, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PinkWool = Block{ID: 108, DisplayName: "Pink Wool", Name: "pink_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{101}, NeedsTools: map[uint32]bool{}, MinStateID: 1390, MaxStateID: 1390, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GrayWool = Block{ID: 109, DisplayName: "Gray Wool", Name: "gray_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{102}, NeedsTools: map[uint32]bool{}, MinStateID: 1391, MaxStateID: 1391, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightGrayWool = Block{ID: 110, DisplayName: "Light Gray Wool", Name: "light_gray_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{103}, NeedsTools: map[uint32]bool{}, MinStateID: 1392, MaxStateID: 1392, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CyanWool = Block{ID: 111, DisplayName: "Cyan Wool", Name: "cyan_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{104}, NeedsTools: map[uint32]bool{}, MinStateID: 1393, MaxStateID: 1393, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpleWool = Block{ID: 112, DisplayName: "Purple Wool", Name: "purple_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{105}, NeedsTools: map[uint32]bool{}, MinStateID: 1394, MaxStateID: 1394, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueWool = Block{ID: 113, DisplayName: "Blue Wool", Name: "blue_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{106}, NeedsTools: map[uint32]bool{}, MinStateID: 1395, MaxStateID: 1395, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrownWool = Block{ID: 114, DisplayName: "Brown Wool", Name: "brown_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{107}, NeedsTools: map[uint32]bool{}, MinStateID: 1396, MaxStateID: 1396, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GreenWool = Block{ID: 115, DisplayName: "Green Wool", Name: "green_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{108}, NeedsTools: map[uint32]bool{}, MinStateID: 1397, MaxStateID: 1397, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedWool = Block{ID: 116, DisplayName: "Red Wool", Name: "red_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{109}, NeedsTools: map[uint32]bool{}, MinStateID: 1398, MaxStateID: 1398, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlackWool = Block{ID: 117, DisplayName: "Black Wool", Name: "black_wool", Hardness: 0.8, Diggable: true, DropIDs: []uint32{110}, NeedsTools: map[uint32]bool{}, MinStateID: 1399, MaxStateID: 1399, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MovingPiston = Block{ID: 118, DisplayName: "Moving Piston", Name: "moving_piston", Hardness: 0, Diggable: false, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 1400, MaxStateID: 1411, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Dandelion = Block{ID: 119, DisplayName: "Dandelion", Name: "dandelion", Hardness: 0, Diggable: true, DropIDs: []uint32{111}, NeedsTools: map[uint32]bool{}, MinStateID: 1412, MaxStateID: 1412, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Poppy = Block{ID: 120, DisplayName: "Poppy", Name: "poppy", Hardness: 0, Diggable: true, DropIDs: []uint32{112}, NeedsTools: map[uint32]bool{}, MinStateID: 1413, MaxStateID: 1413, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueOrchid = Block{ID: 121, DisplayName: "Blue Orchid", Name: "blue_orchid", Hardness: 0, Diggable: true, DropIDs: []uint32{113}, NeedsTools: map[uint32]bool{}, MinStateID: 1414, MaxStateID: 1414, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Allium = Block{ID: 122, DisplayName: "Allium", Name: "allium", Hardness: 0, Diggable: true, DropIDs: []uint32{114}, NeedsTools: map[uint32]bool{}, MinStateID: 1415, MaxStateID: 1415, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + AzureBluet = Block{ID: 123, DisplayName: "Azure Bluet", Name: "azure_bluet", Hardness: 0, Diggable: true, DropIDs: []uint32{115}, NeedsTools: map[uint32]bool{}, MinStateID: 1416, MaxStateID: 1416, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedTulip = Block{ID: 124, DisplayName: "Red Tulip", Name: "red_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{116}, NeedsTools: map[uint32]bool{}, MinStateID: 1417, MaxStateID: 1417, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeTulip = Block{ID: 125, DisplayName: "Orange Tulip", Name: "orange_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{117}, NeedsTools: map[uint32]bool{}, MinStateID: 1418, MaxStateID: 1418, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteTulip = Block{ID: 126, DisplayName: "White Tulip", Name: "white_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{118}, NeedsTools: map[uint32]bool{}, MinStateID: 1419, MaxStateID: 1419, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkTulip = Block{ID: 127, DisplayName: "Pink Tulip", Name: "pink_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{119}, NeedsTools: map[uint32]bool{}, MinStateID: 1420, MaxStateID: 1420, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OxeyeDaisy = Block{ID: 128, DisplayName: "Oxeye Daisy", Name: "oxeye_daisy", Hardness: 0, Diggable: true, DropIDs: []uint32{120}, NeedsTools: map[uint32]bool{}, MinStateID: 1421, MaxStateID: 1421, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Cornflower = Block{ID: 129, DisplayName: "Cornflower", Name: "cornflower", Hardness: 0, Diggable: true, DropIDs: []uint32{121}, NeedsTools: map[uint32]bool{}, MinStateID: 1422, MaxStateID: 1422, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WitherRose = Block{ID: 130, DisplayName: "Wither Rose", Name: "wither_rose", Hardness: 0, Diggable: true, DropIDs: []uint32{123}, NeedsTools: map[uint32]bool{}, MinStateID: 1423, MaxStateID: 1423, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LilyOfTheValley = Block{ID: 131, DisplayName: "Lily of the Valley", Name: "lily_of_the_valley", Hardness: 0, Diggable: true, DropIDs: []uint32{122}, NeedsTools: map[uint32]bool{}, MinStateID: 1424, MaxStateID: 1424, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownMushroom = Block{ID: 132, DisplayName: "Brown Mushroom", Name: "brown_mushroom", Hardness: 0, Diggable: true, DropIDs: []uint32{124}, NeedsTools: map[uint32]bool{}, MinStateID: 1425, MaxStateID: 1425, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 1} + RedMushroom = Block{ID: 133, DisplayName: "Red Mushroom", Name: "red_mushroom", Hardness: 0, Diggable: true, DropIDs: []uint32{125}, NeedsTools: map[uint32]bool{}, MinStateID: 1426, MaxStateID: 1426, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 1} + GoldBlock = Block{ID: 134, DisplayName: "Block of Gold", Name: "gold_block", Hardness: 3, Diggable: true, DropIDs: []uint32{136}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 1427, MaxStateID: 1427, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + IronBlock = Block{ID: 135, DisplayName: "Block of Iron", Name: "iron_block", Hardness: 5, Diggable: true, DropIDs: []uint32{137}, NeedsTools: map[uint32]bool{590: true, 600: true, 605: true}, MinStateID: 1428, MaxStateID: 1428, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Bricks = Block{ID: 136, DisplayName: "Bricks", Name: "bricks", Hardness: 2, Diggable: true, DropIDs: []uint32{166}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 1429, MaxStateID: 1429, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Tnt = Block{ID: 137, DisplayName: "TNT", Name: "tnt", Hardness: 0, Diggable: true, DropIDs: []uint32{167}, NeedsTools: map[uint32]bool{}, MinStateID: 1430, MaxStateID: 1431, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Bookshelf = Block{ID: 138, DisplayName: "Bookshelf", Name: "bookshelf", Hardness: 1.5, Diggable: true, DropIDs: []uint32{168}, NeedsTools: map[uint32]bool{}, MinStateID: 1432, MaxStateID: 1432, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MossyCobblestone = Block{ID: 139, DisplayName: "Mossy Cobblestone", Name: "mossy_cobblestone", Hardness: 2, Diggable: true, DropIDs: []uint32{169}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 1433, MaxStateID: 1433, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Obsidian = Block{ID: 140, DisplayName: "Obsidian", Name: "obsidian", Hardness: 50, Diggable: true, DropIDs: []uint32{170}, NeedsTools: map[uint32]bool{605: true}, MinStateID: 1434, MaxStateID: 1434, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Torch = Block{ID: 141, DisplayName: "Torch", Name: "torch", Hardness: 0, Diggable: true, DropIDs: []uint32{171}, NeedsTools: map[uint32]bool{}, MinStateID: 1435, MaxStateID: 1435, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 14} + WallTorch = Block{ID: 142, DisplayName: "Wall Torch", Name: "wall_torch", Hardness: 0, Diggable: true, DropIDs: []uint32{171}, NeedsTools: map[uint32]bool{}, MinStateID: 1436, MaxStateID: 1439, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 14} + Fire = Block{ID: 143, DisplayName: "Fire", Name: "fire", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 1440, MaxStateID: 1951, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + SoulFire = Block{ID: 144, DisplayName: "Soul Fire", Name: "soul_fire", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 1952, MaxStateID: 1952, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + Spawner = Block{ID: 145, DisplayName: "Spawner", Name: "spawner", Hardness: 5, Diggable: true, DropIDs: []uint32{178}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 1953, MaxStateID: 1953, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OakStairs = Block{ID: 146, DisplayName: "Oak Stairs", Name: "oak_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{179}, NeedsTools: map[uint32]bool{}, MinStateID: 1954, MaxStateID: 2033, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + Chest = Block{ID: 147, DisplayName: "Chest", Name: "chest", Hardness: 2.5, Diggable: true, DropIDs: []uint32{180}, NeedsTools: map[uint32]bool{}, MinStateID: 2034, MaxStateID: 2057, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedstoneWire = Block{ID: 148, DisplayName: "Redstone Wire", Name: "redstone_wire", Hardness: 0, Diggable: true, DropIDs: []uint32{665}, NeedsTools: map[uint32]bool{}, MinStateID: 2058, MaxStateID: 3353, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DiamondOre = Block{ID: 149, DisplayName: "Diamond Ore", Name: "diamond_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{181}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 3354, MaxStateID: 3354, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DiamondBlock = Block{ID: 150, DisplayName: "Block of Diamond", Name: "diamond_block", Hardness: 5, Diggable: true, DropIDs: []uint32{182}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 3355, MaxStateID: 3355, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CraftingTable = Block{ID: 151, DisplayName: "Crafting Table", Name: "crafting_table", Hardness: 2.5, Diggable: true, DropIDs: []uint32{183}, NeedsTools: map[uint32]bool{}, MinStateID: 3356, MaxStateID: 3356, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Wheat = Block{ID: 152, DisplayName: "Wheat Crops", Name: "wheat", Hardness: 0, Diggable: true, DropIDs: []uint32{620}, NeedsTools: map[uint32]bool{}, MinStateID: 3357, MaxStateID: 3364, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Farmland = Block{ID: 153, DisplayName: "Farmland", Name: "farmland", Hardness: 0.6, Diggable: true, DropIDs: []uint32{184}, NeedsTools: map[uint32]bool{}, MinStateID: 3365, MaxStateID: 3372, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Furnace = Block{ID: 154, DisplayName: "Furnace", Name: "furnace", Hardness: 3.5, Diggable: true, DropIDs: []uint32{185}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 3373, MaxStateID: 3380, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 13} + OakSign = Block{ID: 155, DisplayName: "Oak Sign", Name: "oak_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{652}, NeedsTools: map[uint32]bool{}, MinStateID: 3381, MaxStateID: 3412, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceSign = Block{ID: 156, DisplayName: "Spruce Sign", Name: "spruce_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{653}, NeedsTools: map[uint32]bool{}, MinStateID: 3413, MaxStateID: 3444, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchSign = Block{ID: 157, DisplayName: "Birch Sign", Name: "birch_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{654}, NeedsTools: map[uint32]bool{}, MinStateID: 3445, MaxStateID: 3476, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaSign = Block{ID: 158, DisplayName: "Acacia Sign", Name: "acacia_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{656}, NeedsTools: map[uint32]bool{}, MinStateID: 3477, MaxStateID: 3508, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleSign = Block{ID: 159, DisplayName: "Jungle Sign", Name: "jungle_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{655}, NeedsTools: map[uint32]bool{}, MinStateID: 3509, MaxStateID: 3540, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakSign = Block{ID: 160, DisplayName: "Dark Oak Sign", Name: "dark_oak_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{657}, NeedsTools: map[uint32]bool{}, MinStateID: 3541, MaxStateID: 3572, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OakDoor = Block{ID: 161, DisplayName: "Oak Door", Name: "oak_door", Hardness: 3, Diggable: true, DropIDs: []uint32{558}, NeedsTools: map[uint32]bool{}, MinStateID: 3573, MaxStateID: 3636, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Ladder = Block{ID: 162, DisplayName: "Ladder", Name: "ladder", Hardness: 0.4, Diggable: true, DropIDs: []uint32{186}, NeedsTools: map[uint32]bool{}, MinStateID: 3637, MaxStateID: 3644, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Rail = Block{ID: 163, DisplayName: "Rail", Name: "rail", Hardness: 0.7, Diggable: true, DropIDs: []uint32{187}, NeedsTools: map[uint32]bool{}, MinStateID: 3645, MaxStateID: 3654, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CobblestoneStairs = Block{ID: 164, DisplayName: "Cobblestone Stairs", Name: "cobblestone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{188}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 3655, MaxStateID: 3734, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + OakWallSign = Block{ID: 165, DisplayName: "Oak Wall Sign", Name: "oak_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{652}, NeedsTools: map[uint32]bool{}, MinStateID: 3735, MaxStateID: 3742, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceWallSign = Block{ID: 166, DisplayName: "Spruce Wall Sign", Name: "spruce_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{653}, NeedsTools: map[uint32]bool{}, MinStateID: 3743, MaxStateID: 3750, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchWallSign = Block{ID: 167, DisplayName: "Birch Wall Sign", Name: "birch_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{654}, NeedsTools: map[uint32]bool{}, MinStateID: 3751, MaxStateID: 3758, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaWallSign = Block{ID: 168, DisplayName: "Acacia Wall Sign", Name: "acacia_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{656}, NeedsTools: map[uint32]bool{}, MinStateID: 3759, MaxStateID: 3766, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleWallSign = Block{ID: 169, DisplayName: "Jungle Wall Sign", Name: "jungle_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{655}, NeedsTools: map[uint32]bool{}, MinStateID: 3767, MaxStateID: 3774, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakWallSign = Block{ID: 170, DisplayName: "Dark Oak Wall Sign", Name: "dark_oak_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{657}, NeedsTools: map[uint32]bool{}, MinStateID: 3775, MaxStateID: 3782, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Lever = Block{ID: 171, DisplayName: "Lever", Name: "lever", Hardness: 0.5, Diggable: true, DropIDs: []uint32{189}, NeedsTools: map[uint32]bool{}, MinStateID: 3783, MaxStateID: 3806, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StonePressurePlate = Block{ID: 172, DisplayName: "Stone Pressure Plate", Name: "stone_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{190}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 3807, MaxStateID: 3808, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + IronDoor = Block{ID: 173, DisplayName: "Iron Door", Name: "iron_door", Hardness: 5, Diggable: true, DropIDs: []uint32{557}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 3809, MaxStateID: 3872, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OakPressurePlate = Block{ID: 174, DisplayName: "Oak Pressure Plate", Name: "oak_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{191}, NeedsTools: map[uint32]bool{}, MinStateID: 3873, MaxStateID: 3874, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SprucePressurePlate = Block{ID: 175, DisplayName: "Spruce Pressure Plate", Name: "spruce_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{192}, NeedsTools: map[uint32]bool{}, MinStateID: 3875, MaxStateID: 3876, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchPressurePlate = Block{ID: 176, DisplayName: "Birch Pressure Plate", Name: "birch_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{193}, NeedsTools: map[uint32]bool{}, MinStateID: 3877, MaxStateID: 3878, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JunglePressurePlate = Block{ID: 177, DisplayName: "Jungle Pressure Plate", Name: "jungle_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{194}, NeedsTools: map[uint32]bool{}, MinStateID: 3879, MaxStateID: 3880, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaPressurePlate = Block{ID: 178, DisplayName: "Acacia Pressure Plate", Name: "acacia_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{195}, NeedsTools: map[uint32]bool{}, MinStateID: 3881, MaxStateID: 3882, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakPressurePlate = Block{ID: 179, DisplayName: "Dark Oak Pressure Plate", Name: "dark_oak_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{196}, NeedsTools: map[uint32]bool{}, MinStateID: 3883, MaxStateID: 3884, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedstoneOre = Block{ID: 180, DisplayName: "Redstone Ore", Name: "redstone_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{200}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 3885, MaxStateID: 3886, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 9} + RedstoneTorch = Block{ID: 181, DisplayName: "Redstone Torch", Name: "redstone_torch", Hardness: 0, Diggable: true, DropIDs: []uint32{201}, NeedsTools: map[uint32]bool{}, MinStateID: 3887, MaxStateID: 3888, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 7} + RedstoneWallTorch = Block{ID: 182, DisplayName: "Redstone Wall Torch", Name: "redstone_wall_torch", Hardness: 0, Diggable: true, DropIDs: []uint32{201}, NeedsTools: map[uint32]bool{}, MinStateID: 3889, MaxStateID: 3896, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 7} + StoneButton = Block{ID: 183, DisplayName: "Stone Button", Name: "stone_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{304}, NeedsTools: map[uint32]bool{}, MinStateID: 3897, MaxStateID: 3920, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Snow = Block{ID: 184, DisplayName: "Snow", Name: "snow", Hardness: 0.1, Diggable: true, DropIDs: []uint32{202}, NeedsTools: map[uint32]bool{599: true, 604: true, 584: true, 589: true, 594: true}, MinStateID: 3921, MaxStateID: 3928, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Ice = Block{ID: 185, DisplayName: "Ice", Name: "ice", Hardness: 0.5, Diggable: true, DropIDs: []uint32{203}, NeedsTools: map[uint32]bool{}, MinStateID: 3929, MaxStateID: 3929, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SnowBlock = Block{ID: 186, DisplayName: "Snow Block", Name: "snow_block", Hardness: 0.2, Diggable: true, DropIDs: []uint32{204}, NeedsTools: map[uint32]bool{584: true, 589: true, 594: true, 599: true, 604: true}, MinStateID: 3930, MaxStateID: 3930, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Cactus = Block{ID: 187, DisplayName: "Cactus", Name: "cactus", Hardness: 0.4, Diggable: true, DropIDs: []uint32{205}, NeedsTools: map[uint32]bool{}, MinStateID: 3931, MaxStateID: 3946, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Clay = Block{ID: 188, DisplayName: "Clay", Name: "clay", Hardness: 0.6, Diggable: true, DropIDs: []uint32{206}, NeedsTools: map[uint32]bool{}, MinStateID: 3947, MaxStateID: 3947, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SugarCane = Block{ID: 189, DisplayName: "Sugar Cane", Name: "sugar_cane", Hardness: 0, Diggable: true, DropIDs: []uint32{133}, NeedsTools: map[uint32]bool{}, MinStateID: 3948, MaxStateID: 3963, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Jukebox = Block{ID: 190, DisplayName: "Jukebox", Name: "jukebox", Hardness: 2, Diggable: true, DropIDs: []uint32{207}, NeedsTools: map[uint32]bool{}, MinStateID: 3964, MaxStateID: 3965, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakFence = Block{ID: 191, DisplayName: "Oak Fence", Name: "oak_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{208}, NeedsTools: map[uint32]bool{}, MinStateID: 3966, MaxStateID: 3997, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Pumpkin = Block{ID: 192, DisplayName: "Pumpkin", Name: "pumpkin", Hardness: 1, Diggable: true, DropIDs: []uint32{216}, NeedsTools: map[uint32]bool{}, MinStateID: 3998, MaxStateID: 3998, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + Netherrack = Block{ID: 193, DisplayName: "Netherrack", Name: "netherrack", Hardness: 0.4, Diggable: true, DropIDs: []uint32{218}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 3999, MaxStateID: 3999, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SoulSand = Block{ID: 194, DisplayName: "Soul Sand", Name: "soul_sand", Hardness: 0.5, Diggable: true, DropIDs: []uint32{219}, NeedsTools: map[uint32]bool{}, MinStateID: 4000, MaxStateID: 4000, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SoulSoil = Block{ID: 195, DisplayName: "Soul Soil", Name: "soul_soil", Hardness: 0.5, Diggable: true, DropIDs: []uint32{220}, NeedsTools: map[uint32]bool{}, MinStateID: 4001, MaxStateID: 4001, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Basalt = Block{ID: 196, DisplayName: "Basalt", Name: "basalt", Hardness: 1.25, Diggable: true, DropIDs: []uint32{221}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4002, MaxStateID: 4004, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBasalt = Block{ID: 197, DisplayName: "Polished Basalt", Name: "polished_basalt", Hardness: 1.25, Diggable: true, DropIDs: []uint32{222}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4005, MaxStateID: 4007, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SoulTorch = Block{ID: 198, DisplayName: "Soul Torch", Name: "soul_torch", Hardness: 0, Diggable: true, DropIDs: []uint32{223}, NeedsTools: map[uint32]bool{}, MinStateID: 4008, MaxStateID: 4008, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SoulWallTorch = Block{ID: 199, DisplayName: "Soul Wall Torch", Name: "soul_wall_torch", Hardness: 0, Diggable: true, DropIDs: []uint32{223}, NeedsTools: map[uint32]bool{}, MinStateID: 4009, MaxStateID: 4012, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Glowstone = Block{ID: 200, DisplayName: "Glowstone", Name: "glowstone", Hardness: 0.3, Diggable: true, DropIDs: []uint32{224}, NeedsTools: map[uint32]bool{}, MinStateID: 4013, MaxStateID: 4013, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + NetherPortal = Block{ID: 201, DisplayName: "Nether Portal", Name: "nether_portal", Hardness: 0, Diggable: false, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 4014, MaxStateID: 4015, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 11} + CarvedPumpkin = Block{ID: 202, DisplayName: "Carved Pumpkin", Name: "carved_pumpkin", Hardness: 1, Diggable: true, DropIDs: []uint32{217}, NeedsTools: map[uint32]bool{}, MinStateID: 4016, MaxStateID: 4019, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + JackOLantern = Block{ID: 203, DisplayName: "Jack o'Lantern", Name: "jack_o_lantern", Hardness: 1, Diggable: true, DropIDs: []uint32{225}, NeedsTools: map[uint32]bool{}, MinStateID: 4020, MaxStateID: 4023, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 15} + Cake = Block{ID: 204, DisplayName: "Cake", Name: "cake", Hardness: 0.5, Diggable: true, DropIDs: []uint32{715}, NeedsTools: map[uint32]bool{}, MinStateID: 4024, MaxStateID: 4030, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Repeater = Block{ID: 205, DisplayName: "Redstone Repeater", Name: "repeater", Hardness: 0, Diggable: true, DropIDs: []uint32{566}, NeedsTools: map[uint32]bool{}, MinStateID: 4031, MaxStateID: 4094, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteStainedGlass = Block{ID: 206, DisplayName: "White Stained Glass", Name: "white_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{379}, NeedsTools: map[uint32]bool{}, MinStateID: 4095, MaxStateID: 4095, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeStainedGlass = Block{ID: 207, DisplayName: "Orange Stained Glass", Name: "orange_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{380}, NeedsTools: map[uint32]bool{}, MinStateID: 4096, MaxStateID: 4096, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaStainedGlass = Block{ID: 208, DisplayName: "Magenta Stained Glass", Name: "magenta_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{381}, NeedsTools: map[uint32]bool{}, MinStateID: 4097, MaxStateID: 4097, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueStainedGlass = Block{ID: 209, DisplayName: "Light Blue Stained Glass", Name: "light_blue_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{382}, NeedsTools: map[uint32]bool{}, MinStateID: 4098, MaxStateID: 4098, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowStainedGlass = Block{ID: 210, DisplayName: "Yellow Stained Glass", Name: "yellow_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{383}, NeedsTools: map[uint32]bool{}, MinStateID: 4099, MaxStateID: 4099, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeStainedGlass = Block{ID: 211, DisplayName: "Lime Stained Glass", Name: "lime_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{384}, NeedsTools: map[uint32]bool{}, MinStateID: 4100, MaxStateID: 4100, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkStainedGlass = Block{ID: 212, DisplayName: "Pink Stained Glass", Name: "pink_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{385}, NeedsTools: map[uint32]bool{}, MinStateID: 4101, MaxStateID: 4101, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayStainedGlass = Block{ID: 213, DisplayName: "Gray Stained Glass", Name: "gray_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{386}, NeedsTools: map[uint32]bool{}, MinStateID: 4102, MaxStateID: 4102, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayStainedGlass = Block{ID: 214, DisplayName: "Light Gray Stained Glass", Name: "light_gray_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{387}, NeedsTools: map[uint32]bool{}, MinStateID: 4103, MaxStateID: 4103, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanStainedGlass = Block{ID: 215, DisplayName: "Cyan Stained Glass", Name: "cyan_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{388}, NeedsTools: map[uint32]bool{}, MinStateID: 4104, MaxStateID: 4104, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleStainedGlass = Block{ID: 216, DisplayName: "Purple Stained Glass", Name: "purple_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{389}, NeedsTools: map[uint32]bool{}, MinStateID: 4105, MaxStateID: 4105, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueStainedGlass = Block{ID: 217, DisplayName: "Blue Stained Glass", Name: "blue_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{390}, NeedsTools: map[uint32]bool{}, MinStateID: 4106, MaxStateID: 4106, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownStainedGlass = Block{ID: 218, DisplayName: "Brown Stained Glass", Name: "brown_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{391}, NeedsTools: map[uint32]bool{}, MinStateID: 4107, MaxStateID: 4107, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenStainedGlass = Block{ID: 219, DisplayName: "Green Stained Glass", Name: "green_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{392}, NeedsTools: map[uint32]bool{}, MinStateID: 4108, MaxStateID: 4108, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedStainedGlass = Block{ID: 220, DisplayName: "Red Stained Glass", Name: "red_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{393}, NeedsTools: map[uint32]bool{}, MinStateID: 4109, MaxStateID: 4109, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackStainedGlass = Block{ID: 221, DisplayName: "Black Stained Glass", Name: "black_stained_glass", Hardness: 0.3, Diggable: true, DropIDs: []uint32{394}, NeedsTools: map[uint32]bool{}, MinStateID: 4110, MaxStateID: 4110, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OakTrapdoor = Block{ID: 222, DisplayName: "Oak Trapdoor", Name: "oak_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{226}, NeedsTools: map[uint32]bool{}, MinStateID: 4111, MaxStateID: 4174, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceTrapdoor = Block{ID: 223, DisplayName: "Spruce Trapdoor", Name: "spruce_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{227}, NeedsTools: map[uint32]bool{}, MinStateID: 4175, MaxStateID: 4238, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchTrapdoor = Block{ID: 224, DisplayName: "Birch Trapdoor", Name: "birch_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{228}, NeedsTools: map[uint32]bool{}, MinStateID: 4239, MaxStateID: 4302, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleTrapdoor = Block{ID: 225, DisplayName: "Jungle Trapdoor", Name: "jungle_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{229}, NeedsTools: map[uint32]bool{}, MinStateID: 4303, MaxStateID: 4366, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaTrapdoor = Block{ID: 226, DisplayName: "Acacia Trapdoor", Name: "acacia_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{230}, NeedsTools: map[uint32]bool{}, MinStateID: 4367, MaxStateID: 4430, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakTrapdoor = Block{ID: 227, DisplayName: "Dark Oak Trapdoor", Name: "dark_oak_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{231}, NeedsTools: map[uint32]bool{}, MinStateID: 4431, MaxStateID: 4494, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StoneBricks = Block{ID: 228, DisplayName: "Stone Bricks", Name: "stone_bricks", Hardness: 1.5, Diggable: true, DropIDs: []uint32{240}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 4495, MaxStateID: 4495, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MossyStoneBricks = Block{ID: 229, DisplayName: "Mossy Stone Bricks", Name: "mossy_stone_bricks", Hardness: 1.5, Diggable: true, DropIDs: []uint32{241}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 4496, MaxStateID: 4496, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrackedStoneBricks = Block{ID: 230, DisplayName: "Cracked Stone Bricks", Name: "cracked_stone_bricks", Hardness: 1.5, Diggable: true, DropIDs: []uint32{242}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 4497, MaxStateID: 4497, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + ChiseledStoneBricks = Block{ID: 231, DisplayName: "Chiseled Stone Bricks", Name: "chiseled_stone_bricks", Hardness: 1.5, Diggable: true, DropIDs: []uint32{243}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 4498, MaxStateID: 4498, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + InfestedStone = Block{ID: 232, DisplayName: "Infested Stone", Name: "infested_stone", Hardness: 0, Diggable: true, DropIDs: []uint32{234}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4499, MaxStateID: 4499, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + InfestedCobblestone = Block{ID: 233, DisplayName: "Infested Cobblestone", Name: "infested_cobblestone", Hardness: 0, Diggable: true, DropIDs: []uint32{235}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4500, MaxStateID: 4500, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + InfestedStoneBricks = Block{ID: 234, DisplayName: "Infested Stone Bricks", Name: "infested_stone_bricks", Hardness: 0, Diggable: true, DropIDs: []uint32{236}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 4501, MaxStateID: 4501, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + InfestedMossyStoneBricks = Block{ID: 235, DisplayName: "Infested Mossy Stone Bricks", Name: "infested_mossy_stone_bricks", Hardness: 0, Diggable: true, DropIDs: []uint32{237}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4502, MaxStateID: 4502, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + InfestedCrackedStoneBricks = Block{ID: 236, DisplayName: "Infested Cracked Stone Bricks", Name: "infested_cracked_stone_bricks", Hardness: 0, Diggable: true, DropIDs: []uint32{238}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 4503, MaxStateID: 4503, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + InfestedChiseledStoneBricks = Block{ID: 237, DisplayName: "Infested Chiseled Stone Bricks", Name: "infested_chiseled_stone_bricks", Hardness: 0, Diggable: true, DropIDs: []uint32{239}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 4504, MaxStateID: 4504, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrownMushroomBlock = Block{ID: 238, DisplayName: "Brown Mushroom Block", Name: "brown_mushroom_block", Hardness: 0.2, Diggable: true, DropIDs: []uint32{244}, NeedsTools: map[uint32]bool{}, MinStateID: 4505, MaxStateID: 4568, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedMushroomBlock = Block{ID: 239, DisplayName: "Red Mushroom Block", Name: "red_mushroom_block", Hardness: 0.2, Diggable: true, DropIDs: []uint32{245}, NeedsTools: map[uint32]bool{}, MinStateID: 4569, MaxStateID: 4632, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MushroomStem = Block{ID: 240, DisplayName: "Mushroom Stem", Name: "mushroom_stem", Hardness: 0.2, Diggable: true, DropIDs: []uint32{246}, NeedsTools: map[uint32]bool{}, MinStateID: 4633, MaxStateID: 4696, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + IronBars = Block{ID: 241, DisplayName: "Iron Bars", Name: "iron_bars", Hardness: 5, Diggable: true, DropIDs: []uint32{247}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4697, MaxStateID: 4728, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Chain = Block{ID: 242, DisplayName: "Chain", Name: "chain", Hardness: 5, Diggable: true, DropIDs: []uint32{248}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4729, MaxStateID: 4734, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GlassPane = Block{ID: 243, DisplayName: "Glass Pane", Name: "glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{249}, NeedsTools: map[uint32]bool{}, MinStateID: 4735, MaxStateID: 4766, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Melon = Block{ID: 244, DisplayName: "Melon", Name: "melon", Hardness: 1, Diggable: true, DropIDs: []uint32{250}, NeedsTools: map[uint32]bool{}, MinStateID: 4767, MaxStateID: 4767, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + AttachedPumpkinStem = Block{ID: 245, DisplayName: "Attached Pumpkin Stem", Name: "attached_pumpkin_stem", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 4768, MaxStateID: 4771, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AttachedMelonStem = Block{ID: 246, DisplayName: "Attached Melon Stem", Name: "attached_melon_stem", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 4772, MaxStateID: 4775, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PumpkinStem = Block{ID: 247, DisplayName: "Pumpkin Stem", Name: "pumpkin_stem", Hardness: 0, Diggable: true, DropIDs: []uint32{737}, NeedsTools: map[uint32]bool{}, MinStateID: 4776, MaxStateID: 4783, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MelonStem = Block{ID: 248, DisplayName: "Melon Stem", Name: "melon_stem", Hardness: 0, Diggable: true, DropIDs: []uint32{738}, NeedsTools: map[uint32]bool{}, MinStateID: 4784, MaxStateID: 4791, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Vine = Block{ID: 249, DisplayName: "Vines", Name: "vine", Hardness: 0.2, Diggable: true, DropIDs: []uint32{251}, NeedsTools: map[uint32]bool{}, MinStateID: 4792, MaxStateID: 4823, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OakFenceGate = Block{ID: 250, DisplayName: "Oak Fence Gate", Name: "oak_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{252}, NeedsTools: map[uint32]bool{}, MinStateID: 4824, MaxStateID: 4855, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrickStairs = Block{ID: 251, DisplayName: "Brick Stairs", Name: "brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{260}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 4856, MaxStateID: 4935, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + StoneBrickStairs = Block{ID: 252, DisplayName: "Stone Brick Stairs", Name: "stone_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{261}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 4936, MaxStateID: 5015, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + Mycelium = Block{ID: 253, DisplayName: "Mycelium", Name: "mycelium", Hardness: 0.6, Diggable: true, DropIDs: []uint32{262}, NeedsTools: map[uint32]bool{}, MinStateID: 5016, MaxStateID: 5017, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LilyPad = Block{ID: 254, DisplayName: "Lily Pad", Name: "lily_pad", Hardness: 0, Diggable: true, DropIDs: []uint32{263}, NeedsTools: map[uint32]bool{}, MinStateID: 5018, MaxStateID: 5018, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + NetherBricks = Block{ID: 255, DisplayName: "Nether Bricks", Name: "nether_bricks", Hardness: 2, Diggable: true, DropIDs: []uint32{264}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5019, MaxStateID: 5019, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + NetherBrickFence = Block{ID: 256, DisplayName: "Nether Brick Fence", Name: "nether_brick_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{267}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5020, MaxStateID: 5051, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + NetherBrickStairs = Block{ID: 257, DisplayName: "Nether Brick Stairs", Name: "nether_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{268}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5052, MaxStateID: 5131, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + NetherWart = Block{ID: 258, DisplayName: "Nether Wart", Name: "nether_wart", Hardness: 0, Diggable: true, DropIDs: []uint32{748}, NeedsTools: map[uint32]bool{}, MinStateID: 5132, MaxStateID: 5135, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EnchantingTable = Block{ID: 259, DisplayName: "Enchanting Table", Name: "enchanting_table", Hardness: 5, Diggable: true, DropIDs: []uint32{269}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 5136, MaxStateID: 5136, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrewingStand = Block{ID: 260, DisplayName: "Brewing Stand", Name: "brewing_stand", Hardness: 0.5, Diggable: true, DropIDs: []uint32{755}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5137, MaxStateID: 5144, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 1} + Cauldron = Block{ID: 261, DisplayName: "Cauldron", Name: "cauldron", Hardness: 2, Diggable: true, DropIDs: []uint32{756}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5145, MaxStateID: 5148, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EndPortal = Block{ID: 262, DisplayName: "End Portal", Name: "end_portal", Hardness: 0, Diggable: false, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 5149, MaxStateID: 5149, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + EndPortalFrame = Block{ID: 263, DisplayName: "End Portal Frame", Name: "end_portal_frame", Hardness: 0, Diggable: false, DropIDs: []uint32{270}, NeedsTools: map[uint32]bool{}, MinStateID: 5150, MaxStateID: 5157, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 1} + EndStone = Block{ID: 264, DisplayName: "End Stone", Name: "end_stone", Hardness: 3, Diggable: true, DropIDs: []uint32{271}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 5158, MaxStateID: 5158, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DragonEgg = Block{ID: 265, DisplayName: "Dragon Egg", Name: "dragon_egg", Hardness: 3, Diggable: true, DropIDs: []uint32{273}, NeedsTools: map[uint32]bool{}, MinStateID: 5159, MaxStateID: 5159, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedstoneLamp = Block{ID: 266, DisplayName: "Redstone Lamp", Name: "redstone_lamp", Hardness: 0.3, Diggable: true, DropIDs: []uint32{274}, NeedsTools: map[uint32]bool{}, MinStateID: 5160, MaxStateID: 5161, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + Cocoa = Block{ID: 267, DisplayName: "Cocoa", Name: "cocoa", Hardness: 0.2, Diggable: true, DropIDs: []uint32{694}, NeedsTools: map[uint32]bool{}, MinStateID: 5162, MaxStateID: 5173, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SandstoneStairs = Block{ID: 268, DisplayName: "Sandstone Stairs", Name: "sandstone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{275}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 5174, MaxStateID: 5253, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + EmeraldOre = Block{ID: 269, DisplayName: "Emerald Ore", Name: "emerald_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{276}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 5254, MaxStateID: 5254, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + EnderChest = Block{ID: 270, DisplayName: "Ender Chest", Name: "ender_chest", Hardness: 22.5, Diggable: true, DropIDs: []uint32{277}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 5255, MaxStateID: 5262, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TripwireHook = Block{ID: 271, DisplayName: "Tripwire Hook", Name: "tripwire_hook", Hardness: 0, Diggable: true, DropIDs: []uint32{278}, NeedsTools: map[uint32]bool{}, MinStateID: 5263, MaxStateID: 5278, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Tripwire = Block{ID: 272, DisplayName: "Tripwire", Name: "tripwire", Hardness: 0, Diggable: true, DropIDs: []uint32{616}, NeedsTools: map[uint32]bool{}, MinStateID: 5279, MaxStateID: 5406, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EmeraldBlock = Block{ID: 273, DisplayName: "Block of Emerald", Name: "emerald_block", Hardness: 5, Diggable: true, DropIDs: []uint32{279}, NeedsTools: map[uint32]bool{600: true, 605: true}, MinStateID: 5407, MaxStateID: 5407, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SpruceStairs = Block{ID: 274, DisplayName: "Spruce Stairs", Name: "spruce_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{280}, NeedsTools: map[uint32]bool{}, MinStateID: 5408, MaxStateID: 5487, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + BirchStairs = Block{ID: 275, DisplayName: "Birch Stairs", Name: "birch_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{281}, NeedsTools: map[uint32]bool{}, MinStateID: 5488, MaxStateID: 5567, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + JungleStairs = Block{ID: 276, DisplayName: "Jungle Stairs", Name: "jungle_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{282}, NeedsTools: map[uint32]bool{}, MinStateID: 5568, MaxStateID: 5647, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + CommandBlock = Block{ID: 277, DisplayName: "Command Block", Name: "command_block", Hardness: 0, Diggable: false, DropIDs: []uint32{285}, NeedsTools: map[uint32]bool{}, MinStateID: 5648, MaxStateID: 5659, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Beacon = Block{ID: 278, DisplayName: "Beacon", Name: "beacon", Hardness: 3, Diggable: true, DropIDs: []uint32{286}, NeedsTools: map[uint32]bool{}, MinStateID: 5660, MaxStateID: 5660, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + CobblestoneWall = Block{ID: 279, DisplayName: "Cobblestone Wall", Name: "cobblestone_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{287}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 5661, MaxStateID: 5984, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MossyCobblestoneWall = Block{ID: 280, DisplayName: "Mossy Cobblestone Wall", Name: "mossy_cobblestone_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{288}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 5985, MaxStateID: 6308, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + FlowerPot = Block{ID: 281, DisplayName: "Flower Pot", Name: "flower_pot", Hardness: 0, Diggable: true, DropIDs: []uint32{829}, NeedsTools: map[uint32]bool{}, MinStateID: 6309, MaxStateID: 6309, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedOakSapling = Block{ID: 282, DisplayName: "Potted Oak Sapling", Name: "potted_oak_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 23}, NeedsTools: map[uint32]bool{}, MinStateID: 6310, MaxStateID: 6310, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedSpruceSapling = Block{ID: 283, DisplayName: "Potted Spruce Sapling", Name: "potted_spruce_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 24}, NeedsTools: map[uint32]bool{}, MinStateID: 6311, MaxStateID: 6311, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedBirchSapling = Block{ID: 284, DisplayName: "Potted Birch Sapling", Name: "potted_birch_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 25}, NeedsTools: map[uint32]bool{}, MinStateID: 6312, MaxStateID: 6312, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedJungleSapling = Block{ID: 285, DisplayName: "Potted Jungle Sapling", Name: "potted_jungle_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 26}, NeedsTools: map[uint32]bool{}, MinStateID: 6313, MaxStateID: 6313, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedAcaciaSapling = Block{ID: 286, DisplayName: "Potted Acacia Sapling", Name: "potted_acacia_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 27}, NeedsTools: map[uint32]bool{}, MinStateID: 6314, MaxStateID: 6314, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedDarkOakSapling = Block{ID: 287, DisplayName: "Potted Dark Oak Sapling", Name: "potted_dark_oak_sapling", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 28}, NeedsTools: map[uint32]bool{}, MinStateID: 6315, MaxStateID: 6315, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedFern = Block{ID: 288, DisplayName: "Potted Fern", Name: "potted_fern", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 90}, NeedsTools: map[uint32]bool{}, MinStateID: 6316, MaxStateID: 6316, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedDandelion = Block{ID: 289, DisplayName: "Potted Dandelion", Name: "potted_dandelion", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 111}, NeedsTools: map[uint32]bool{}, MinStateID: 6317, MaxStateID: 6317, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedPoppy = Block{ID: 290, DisplayName: "Potted Poppy", Name: "potted_poppy", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 112}, NeedsTools: map[uint32]bool{}, MinStateID: 6318, MaxStateID: 6318, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedBlueOrchid = Block{ID: 291, DisplayName: "Potted Blue Orchid", Name: "potted_blue_orchid", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 113}, NeedsTools: map[uint32]bool{}, MinStateID: 6319, MaxStateID: 6319, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedAllium = Block{ID: 292, DisplayName: "Potted Allium", Name: "potted_allium", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 114}, NeedsTools: map[uint32]bool{}, MinStateID: 6320, MaxStateID: 6320, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedAzureBluet = Block{ID: 293, DisplayName: "Potted Azure Bluet", Name: "potted_azure_bluet", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 115}, NeedsTools: map[uint32]bool{}, MinStateID: 6321, MaxStateID: 6321, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedRedTulip = Block{ID: 294, DisplayName: "Potted Red Tulip", Name: "potted_red_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 116}, NeedsTools: map[uint32]bool{}, MinStateID: 6322, MaxStateID: 6322, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedOrangeTulip = Block{ID: 295, DisplayName: "Potted Orange Tulip", Name: "potted_orange_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 117}, NeedsTools: map[uint32]bool{}, MinStateID: 6323, MaxStateID: 6323, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedWhiteTulip = Block{ID: 296, DisplayName: "Potted White Tulip", Name: "potted_white_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 118}, NeedsTools: map[uint32]bool{}, MinStateID: 6324, MaxStateID: 6324, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedPinkTulip = Block{ID: 297, DisplayName: "Potted Pink Tulip", Name: "potted_pink_tulip", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 119}, NeedsTools: map[uint32]bool{}, MinStateID: 6325, MaxStateID: 6325, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedOxeyeDaisy = Block{ID: 298, DisplayName: "Potted Oxeye Daisy", Name: "potted_oxeye_daisy", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 120}, NeedsTools: map[uint32]bool{}, MinStateID: 6326, MaxStateID: 6326, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedCornflower = Block{ID: 299, DisplayName: "Potted Cornflower", Name: "potted_cornflower", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 121}, NeedsTools: map[uint32]bool{}, MinStateID: 6327, MaxStateID: 6327, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedLilyOfTheValley = Block{ID: 300, DisplayName: "Potted Lily of the Valley", Name: "potted_lily_of_the_valley", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 122}, NeedsTools: map[uint32]bool{}, MinStateID: 6328, MaxStateID: 6328, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedWitherRose = Block{ID: 301, DisplayName: "Potted Wither Rose", Name: "potted_wither_rose", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 123}, NeedsTools: map[uint32]bool{}, MinStateID: 6329, MaxStateID: 6329, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedRedMushroom = Block{ID: 302, DisplayName: "Potted Red Mushroom", Name: "potted_red_mushroom", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 125}, NeedsTools: map[uint32]bool{}, MinStateID: 6330, MaxStateID: 6330, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedBrownMushroom = Block{ID: 303, DisplayName: "Potted Brown Mushroom", Name: "potted_brown_mushroom", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 124}, NeedsTools: map[uint32]bool{}, MinStateID: 6331, MaxStateID: 6331, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedDeadBush = Block{ID: 304, DisplayName: "Potted Dead Bush", Name: "potted_dead_bush", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 91}, NeedsTools: map[uint32]bool{}, MinStateID: 6332, MaxStateID: 6332, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedCactus = Block{ID: 305, DisplayName: "Potted Cactus", Name: "potted_cactus", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 205}, NeedsTools: map[uint32]bool{}, MinStateID: 6333, MaxStateID: 6333, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Carrots = Block{ID: 306, DisplayName: "Carrots", Name: "carrots", Hardness: 0, Diggable: true, DropIDs: []uint32{830}, NeedsTools: map[uint32]bool{}, MinStateID: 6334, MaxStateID: 6341, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Potatoes = Block{ID: 307, DisplayName: "Potatoes", Name: "potatoes", Hardness: 0, Diggable: true, DropIDs: []uint32{831}, NeedsTools: map[uint32]bool{}, MinStateID: 6342, MaxStateID: 6349, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OakButton = Block{ID: 308, DisplayName: "Oak Button", Name: "oak_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{305}, NeedsTools: map[uint32]bool{}, MinStateID: 6350, MaxStateID: 6373, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceButton = Block{ID: 309, DisplayName: "Spruce Button", Name: "spruce_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{306}, NeedsTools: map[uint32]bool{}, MinStateID: 6374, MaxStateID: 6397, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchButton = Block{ID: 310, DisplayName: "Birch Button", Name: "birch_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{307}, NeedsTools: map[uint32]bool{}, MinStateID: 6398, MaxStateID: 6421, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleButton = Block{ID: 311, DisplayName: "Jungle Button", Name: "jungle_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{308}, NeedsTools: map[uint32]bool{}, MinStateID: 6422, MaxStateID: 6445, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaButton = Block{ID: 312, DisplayName: "Acacia Button", Name: "acacia_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{309}, NeedsTools: map[uint32]bool{}, MinStateID: 6446, MaxStateID: 6469, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakButton = Block{ID: 313, DisplayName: "Dark Oak Button", Name: "dark_oak_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{310}, NeedsTools: map[uint32]bool{}, MinStateID: 6470, MaxStateID: 6493, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SkeletonSkull = Block{ID: 314, DisplayName: "Skeleton Skull", Name: "skeleton_skull", Hardness: 1, Diggable: true, DropIDs: []uint32{836}, NeedsTools: map[uint32]bool{}, MinStateID: 6494, MaxStateID: 6509, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SkeletonWallSkull = Block{ID: 315, DisplayName: "Skeleton Wall Skull", Name: "skeleton_wall_skull", Hardness: 1, Diggable: true, DropIDs: []uint32{836}, NeedsTools: map[uint32]bool{}, MinStateID: 6510, MaxStateID: 6513, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WitherSkeletonSkull = Block{ID: 316, DisplayName: "Wither Skeleton Skull", Name: "wither_skeleton_skull", Hardness: 1, Diggable: true, DropIDs: []uint32{837}, NeedsTools: map[uint32]bool{}, MinStateID: 6514, MaxStateID: 6529, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WitherSkeletonWallSkull = Block{ID: 317, DisplayName: "Wither Skeleton Wall Skull", Name: "wither_skeleton_wall_skull", Hardness: 1, Diggable: true, DropIDs: []uint32{837}, NeedsTools: map[uint32]bool{}, MinStateID: 6530, MaxStateID: 6533, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + ZombieHead = Block{ID: 318, DisplayName: "Zombie Head", Name: "zombie_head", Hardness: 1, Diggable: true, DropIDs: []uint32{839}, NeedsTools: map[uint32]bool{}, MinStateID: 6534, MaxStateID: 6549, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + ZombieWallHead = Block{ID: 319, DisplayName: "Zombie Wall Head", Name: "zombie_wall_head", Hardness: 1, Diggable: true, DropIDs: []uint32{839}, NeedsTools: map[uint32]bool{}, MinStateID: 6550, MaxStateID: 6553, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PlayerHead = Block{ID: 320, DisplayName: "Player Head", Name: "player_head", Hardness: 1, Diggable: true, DropIDs: []uint32{838}, NeedsTools: map[uint32]bool{}, MinStateID: 6554, MaxStateID: 6569, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PlayerWallHead = Block{ID: 321, DisplayName: "Player Wall Head", Name: "player_wall_head", Hardness: 1, Diggable: true, DropIDs: []uint32{838}, NeedsTools: map[uint32]bool{}, MinStateID: 6570, MaxStateID: 6573, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CreeperHead = Block{ID: 322, DisplayName: "Creeper Head", Name: "creeper_head", Hardness: 1, Diggable: true, DropIDs: []uint32{840}, NeedsTools: map[uint32]bool{}, MinStateID: 6574, MaxStateID: 6589, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CreeperWallHead = Block{ID: 323, DisplayName: "Creeper Wall Head", Name: "creeper_wall_head", Hardness: 1, Diggable: true, DropIDs: []uint32{840}, NeedsTools: map[uint32]bool{}, MinStateID: 6590, MaxStateID: 6593, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DragonHead = Block{ID: 324, DisplayName: "Dragon Head", Name: "dragon_head", Hardness: 1, Diggable: true, DropIDs: []uint32{841}, NeedsTools: map[uint32]bool{}, MinStateID: 6594, MaxStateID: 6609, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DragonWallHead = Block{ID: 325, DisplayName: "Dragon Wall Head", Name: "dragon_wall_head", Hardness: 1, Diggable: true, DropIDs: []uint32{841}, NeedsTools: map[uint32]bool{}, MinStateID: 6610, MaxStateID: 6613, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Anvil = Block{ID: 326, DisplayName: "Anvil", Name: "anvil", Hardness: 5, Diggable: true, DropIDs: []uint32{314}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 6614, MaxStateID: 6617, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + ChippedAnvil = Block{ID: 327, DisplayName: "Chipped Anvil", Name: "chipped_anvil", Hardness: 5, Diggable: true, DropIDs: []uint32{315}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6618, MaxStateID: 6621, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DamagedAnvil = Block{ID: 328, DisplayName: "Damaged Anvil", Name: "damaged_anvil", Hardness: 5, Diggable: true, DropIDs: []uint32{316}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 6622, MaxStateID: 6625, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TrappedChest = Block{ID: 329, DisplayName: "Trapped Chest", Name: "trapped_chest", Hardness: 2.5, Diggable: true, DropIDs: []uint32{317}, NeedsTools: map[uint32]bool{}, MinStateID: 6626, MaxStateID: 6649, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightWeightedPressurePlate = Block{ID: 330, DisplayName: "Light Weighted Pressure Plate", Name: "light_weighted_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{318}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6650, MaxStateID: 6665, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + HeavyWeightedPressurePlate = Block{ID: 331, DisplayName: "Heavy Weighted Pressure Plate", Name: "heavy_weighted_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{319}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 6666, MaxStateID: 6681, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Comparator = Block{ID: 332, DisplayName: "Redstone Comparator", Name: "comparator", Hardness: 0, Diggable: true, DropIDs: []uint32{567}, NeedsTools: map[uint32]bool{}, MinStateID: 6682, MaxStateID: 6697, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DaylightDetector = Block{ID: 333, DisplayName: "Daylight Detector", Name: "daylight_detector", Hardness: 0.2, Diggable: true, DropIDs: []uint32{320}, NeedsTools: map[uint32]bool{}, MinStateID: 6698, MaxStateID: 6729, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedstoneBlock = Block{ID: 334, DisplayName: "Block of Redstone", Name: "redstone_block", Hardness: 5, Diggable: true, DropIDs: []uint32{321}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 6730, MaxStateID: 6730, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + NetherQuartzOre = Block{ID: 335, DisplayName: "Nether Quartz Ore", Name: "nether_quartz_ore", Hardness: 3, Diggable: true, DropIDs: []uint32{322}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 6731, MaxStateID: 6731, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Hopper = Block{ID: 336, DisplayName: "Hopper", Name: "hopper", Hardness: 3, Diggable: true, DropIDs: []uint32{323}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 6732, MaxStateID: 6741, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + QuartzBlock = Block{ID: 337, DisplayName: "Block of Quartz", Name: "quartz_block", Hardness: 0.8, Diggable: true, DropIDs: []uint32{325}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6742, MaxStateID: 6742, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + ChiseledQuartzBlock = Block{ID: 338, DisplayName: "Chiseled Quartz Block", Name: "chiseled_quartz_block", Hardness: 0.8, Diggable: true, DropIDs: []uint32{324}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 6743, MaxStateID: 6743, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + QuartzPillar = Block{ID: 339, DisplayName: "Quartz Pillar", Name: "quartz_pillar", Hardness: 0.8, Diggable: true, DropIDs: []uint32{327}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 6744, MaxStateID: 6746, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + QuartzStairs = Block{ID: 340, DisplayName: "Quartz Stairs", Name: "quartz_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{328}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6747, MaxStateID: 6826, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + ActivatorRail = Block{ID: 341, DisplayName: "Activator Rail", Name: "activator_rail", Hardness: 0.7, Diggable: true, DropIDs: []uint32{329}, NeedsTools: map[uint32]bool{}, MinStateID: 6827, MaxStateID: 6838, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Dropper = Block{ID: 342, DisplayName: "Dropper", Name: "dropper", Hardness: 3.5, Diggable: true, DropIDs: []uint32{330}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 6839, MaxStateID: 6850, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WhiteTerracotta = Block{ID: 343, DisplayName: "White Terracotta", Name: "white_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{331}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6851, MaxStateID: 6851, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OrangeTerracotta = Block{ID: 344, DisplayName: "Orange Terracotta", Name: "orange_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{332}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6852, MaxStateID: 6852, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MagentaTerracotta = Block{ID: 345, DisplayName: "Magenta Terracotta", Name: "magenta_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{333}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 6853, MaxStateID: 6853, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightBlueTerracotta = Block{ID: 346, DisplayName: "Light Blue Terracotta", Name: "light_blue_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{334}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6854, MaxStateID: 6854, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + YellowTerracotta = Block{ID: 347, DisplayName: "Yellow Terracotta", Name: "yellow_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{335}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 6855, MaxStateID: 6855, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LimeTerracotta = Block{ID: 348, DisplayName: "Lime Terracotta", Name: "lime_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{336}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6856, MaxStateID: 6856, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PinkTerracotta = Block{ID: 349, DisplayName: "Pink Terracotta", Name: "pink_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{337}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 6857, MaxStateID: 6857, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GrayTerracotta = Block{ID: 350, DisplayName: "Gray Terracotta", Name: "gray_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{338}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 6858, MaxStateID: 6858, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightGrayTerracotta = Block{ID: 351, DisplayName: "Light Gray Terracotta", Name: "light_gray_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{339}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6859, MaxStateID: 6859, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CyanTerracotta = Block{ID: 352, DisplayName: "Cyan Terracotta", Name: "cyan_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{340}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6860, MaxStateID: 6860, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpleTerracotta = Block{ID: 353, DisplayName: "Purple Terracotta", Name: "purple_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{341}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 6861, MaxStateID: 6861, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueTerracotta = Block{ID: 354, DisplayName: "Blue Terracotta", Name: "blue_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{342}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6862, MaxStateID: 6862, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrownTerracotta = Block{ID: 355, DisplayName: "Brown Terracotta", Name: "brown_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{343}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6863, MaxStateID: 6863, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GreenTerracotta = Block{ID: 356, DisplayName: "Green Terracotta", Name: "green_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{344}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 6864, MaxStateID: 6864, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedTerracotta = Block{ID: 357, DisplayName: "Red Terracotta", Name: "red_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{345}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 6865, MaxStateID: 6865, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlackTerracotta = Block{ID: 358, DisplayName: "Black Terracotta", Name: "black_terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{346}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 6866, MaxStateID: 6866, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WhiteStainedGlassPane = Block{ID: 359, DisplayName: "White Stained Glass Pane", Name: "white_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{395}, NeedsTools: map[uint32]bool{}, MinStateID: 6867, MaxStateID: 6898, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeStainedGlassPane = Block{ID: 360, DisplayName: "Orange Stained Glass Pane", Name: "orange_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{396}, NeedsTools: map[uint32]bool{}, MinStateID: 6899, MaxStateID: 6930, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaStainedGlassPane = Block{ID: 361, DisplayName: "Magenta Stained Glass Pane", Name: "magenta_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{397}, NeedsTools: map[uint32]bool{}, MinStateID: 6931, MaxStateID: 6962, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueStainedGlassPane = Block{ID: 362, DisplayName: "Light Blue Stained Glass Pane", Name: "light_blue_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{398}, NeedsTools: map[uint32]bool{}, MinStateID: 6963, MaxStateID: 6994, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowStainedGlassPane = Block{ID: 363, DisplayName: "Yellow Stained Glass Pane", Name: "yellow_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{399}, NeedsTools: map[uint32]bool{}, MinStateID: 6995, MaxStateID: 7026, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeStainedGlassPane = Block{ID: 364, DisplayName: "Lime Stained Glass Pane", Name: "lime_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{400}, NeedsTools: map[uint32]bool{}, MinStateID: 7027, MaxStateID: 7058, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkStainedGlassPane = Block{ID: 365, DisplayName: "Pink Stained Glass Pane", Name: "pink_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{401}, NeedsTools: map[uint32]bool{}, MinStateID: 7059, MaxStateID: 7090, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayStainedGlassPane = Block{ID: 366, DisplayName: "Gray Stained Glass Pane", Name: "gray_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{402}, NeedsTools: map[uint32]bool{}, MinStateID: 7091, MaxStateID: 7122, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayStainedGlassPane = Block{ID: 367, DisplayName: "Light Gray Stained Glass Pane", Name: "light_gray_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{403}, NeedsTools: map[uint32]bool{}, MinStateID: 7123, MaxStateID: 7154, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanStainedGlassPane = Block{ID: 368, DisplayName: "Cyan Stained Glass Pane", Name: "cyan_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{404}, NeedsTools: map[uint32]bool{}, MinStateID: 7155, MaxStateID: 7186, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleStainedGlassPane = Block{ID: 369, DisplayName: "Purple Stained Glass Pane", Name: "purple_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{405}, NeedsTools: map[uint32]bool{}, MinStateID: 7187, MaxStateID: 7218, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueStainedGlassPane = Block{ID: 370, DisplayName: "Blue Stained Glass Pane", Name: "blue_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{406}, NeedsTools: map[uint32]bool{}, MinStateID: 7219, MaxStateID: 7250, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownStainedGlassPane = Block{ID: 371, DisplayName: "Brown Stained Glass Pane", Name: "brown_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{407}, NeedsTools: map[uint32]bool{}, MinStateID: 7251, MaxStateID: 7282, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenStainedGlassPane = Block{ID: 372, DisplayName: "Green Stained Glass Pane", Name: "green_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{408}, NeedsTools: map[uint32]bool{}, MinStateID: 7283, MaxStateID: 7314, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedStainedGlassPane = Block{ID: 373, DisplayName: "Red Stained Glass Pane", Name: "red_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{409}, NeedsTools: map[uint32]bool{}, MinStateID: 7315, MaxStateID: 7346, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackStainedGlassPane = Block{ID: 374, DisplayName: "Black Stained Glass Pane", Name: "black_stained_glass_pane", Hardness: 0.3, Diggable: true, DropIDs: []uint32{410}, NeedsTools: map[uint32]bool{}, MinStateID: 7347, MaxStateID: 7378, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaStairs = Block{ID: 375, DisplayName: "Acacia Stairs", Name: "acacia_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{369}, NeedsTools: map[uint32]bool{}, MinStateID: 7379, MaxStateID: 7458, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + DarkOakStairs = Block{ID: 376, DisplayName: "Dark Oak Stairs", Name: "dark_oak_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{370}, NeedsTools: map[uint32]bool{}, MinStateID: 7459, MaxStateID: 7538, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + SlimeBlock = Block{ID: 377, DisplayName: "Slime Block", Name: "slime_block", Hardness: 0, Diggable: true, DropIDs: []uint32{371}, NeedsTools: map[uint32]bool{}, MinStateID: 7539, MaxStateID: 7539, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Barrier = Block{ID: 378, DisplayName: "Barrier", Name: "barrier", Hardness: 0, Diggable: false, DropIDs: []uint32{347}, NeedsTools: map[uint32]bool{}, MinStateID: 7540, MaxStateID: 7540, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + IronTrapdoor = Block{ID: 379, DisplayName: "Iron Trapdoor", Name: "iron_trapdoor", Hardness: 5, Diggable: true, DropIDs: []uint32{348}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 7541, MaxStateID: 7604, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Prismarine = Block{ID: 380, DisplayName: "Prismarine", Name: "prismarine", Hardness: 1.5, Diggable: true, DropIDs: []uint32{411}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 7605, MaxStateID: 7605, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PrismarineBricks = Block{ID: 381, DisplayName: "Prismarine Bricks", Name: "prismarine_bricks", Hardness: 1.5, Diggable: true, DropIDs: []uint32{412}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7606, MaxStateID: 7606, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DarkPrismarine = Block{ID: 382, DisplayName: "Dark Prismarine", Name: "dark_prismarine", Hardness: 1.5, Diggable: true, DropIDs: []uint32{413}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7607, MaxStateID: 7607, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PrismarineStairs = Block{ID: 383, DisplayName: "Prismarine Stairs", Name: "prismarine_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{414}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 7608, MaxStateID: 7687, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PrismarineBrickStairs = Block{ID: 384, DisplayName: "Prismarine Brick Stairs", Name: "prismarine_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{415}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7688, MaxStateID: 7767, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + DarkPrismarineStairs = Block{ID: 385, DisplayName: "Dark Prismarine Stairs", Name: "dark_prismarine_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{416}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7768, MaxStateID: 7847, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PrismarineSlab = Block{ID: 386, DisplayName: "Prismarine Slab", Name: "prismarine_slab", Hardness: 1.5, Diggable: true, DropIDs: []uint32{159}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 7848, MaxStateID: 7853, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PrismarineBrickSlab = Block{ID: 387, DisplayName: "Prismarine Brick Slab", Name: "prismarine_brick_slab", Hardness: 1.5, Diggable: true, DropIDs: []uint32{160}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 7854, MaxStateID: 7859, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkPrismarineSlab = Block{ID: 388, DisplayName: "Dark Prismarine Slab", Name: "dark_prismarine_slab", Hardness: 1.5, Diggable: true, DropIDs: []uint32{161}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 7860, MaxStateID: 7865, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SeaLantern = Block{ID: 389, DisplayName: "Sea Lantern", Name: "sea_lantern", Hardness: 0.3, Diggable: true, DropIDs: []uint32{417}, NeedsTools: map[uint32]bool{}, MinStateID: 7866, MaxStateID: 7866, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 15} + HayBlock = Block{ID: 390, DisplayName: "Hay Bale", Name: "hay_block", Hardness: 0.5, Diggable: true, DropIDs: []uint32{349}, NeedsTools: map[uint32]bool{}, MinStateID: 7867, MaxStateID: 7869, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WhiteCarpet = Block{ID: 391, DisplayName: "White Carpet", Name: "white_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{350}, NeedsTools: map[uint32]bool{}, MinStateID: 7870, MaxStateID: 7870, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeCarpet = Block{ID: 392, DisplayName: "Orange Carpet", Name: "orange_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{351}, NeedsTools: map[uint32]bool{}, MinStateID: 7871, MaxStateID: 7871, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaCarpet = Block{ID: 393, DisplayName: "Magenta Carpet", Name: "magenta_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{352}, NeedsTools: map[uint32]bool{}, MinStateID: 7872, MaxStateID: 7872, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueCarpet = Block{ID: 394, DisplayName: "Light Blue Carpet", Name: "light_blue_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{353}, NeedsTools: map[uint32]bool{}, MinStateID: 7873, MaxStateID: 7873, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowCarpet = Block{ID: 395, DisplayName: "Yellow Carpet", Name: "yellow_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{354}, NeedsTools: map[uint32]bool{}, MinStateID: 7874, MaxStateID: 7874, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeCarpet = Block{ID: 396, DisplayName: "Lime Carpet", Name: "lime_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{355}, NeedsTools: map[uint32]bool{}, MinStateID: 7875, MaxStateID: 7875, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkCarpet = Block{ID: 397, DisplayName: "Pink Carpet", Name: "pink_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{356}, NeedsTools: map[uint32]bool{}, MinStateID: 7876, MaxStateID: 7876, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayCarpet = Block{ID: 398, DisplayName: "Gray Carpet", Name: "gray_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{357}, NeedsTools: map[uint32]bool{}, MinStateID: 7877, MaxStateID: 7877, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayCarpet = Block{ID: 399, DisplayName: "Light Gray Carpet", Name: "light_gray_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{358}, NeedsTools: map[uint32]bool{}, MinStateID: 7878, MaxStateID: 7878, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanCarpet = Block{ID: 400, DisplayName: "Cyan Carpet", Name: "cyan_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{359}, NeedsTools: map[uint32]bool{}, MinStateID: 7879, MaxStateID: 7879, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleCarpet = Block{ID: 401, DisplayName: "Purple Carpet", Name: "purple_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{360}, NeedsTools: map[uint32]bool{}, MinStateID: 7880, MaxStateID: 7880, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueCarpet = Block{ID: 402, DisplayName: "Blue Carpet", Name: "blue_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{361}, NeedsTools: map[uint32]bool{}, MinStateID: 7881, MaxStateID: 7881, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownCarpet = Block{ID: 403, DisplayName: "Brown Carpet", Name: "brown_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{362}, NeedsTools: map[uint32]bool{}, MinStateID: 7882, MaxStateID: 7882, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenCarpet = Block{ID: 404, DisplayName: "Green Carpet", Name: "green_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{363}, NeedsTools: map[uint32]bool{}, MinStateID: 7883, MaxStateID: 7883, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedCarpet = Block{ID: 405, DisplayName: "Red Carpet", Name: "red_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{364}, NeedsTools: map[uint32]bool{}, MinStateID: 7884, MaxStateID: 7884, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackCarpet = Block{ID: 406, DisplayName: "Black Carpet", Name: "black_carpet", Hardness: 0.1, Diggable: true, DropIDs: []uint32{365}, NeedsTools: map[uint32]bool{}, MinStateID: 7885, MaxStateID: 7885, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Terracotta = Block{ID: 407, DisplayName: "Terracotta", Name: "terracotta", Hardness: 1.25, Diggable: true, DropIDs: []uint32{366}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7886, MaxStateID: 7886, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CoalBlock = Block{ID: 408, DisplayName: "Block of Coal", Name: "coal_block", Hardness: 5, Diggable: true, DropIDs: []uint32{367}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7887, MaxStateID: 7887, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PackedIce = Block{ID: 409, DisplayName: "Packed Ice", Name: "packed_ice", Hardness: 0.5, Diggable: true, DropIDs: []uint32{368}, NeedsTools: map[uint32]bool{}, MinStateID: 7888, MaxStateID: 7888, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Sunflower = Block{ID: 410, DisplayName: "Sunflower", Name: "sunflower", Hardness: 0, Diggable: true, DropIDs: []uint32{373}, NeedsTools: map[uint32]bool{}, MinStateID: 7889, MaxStateID: 7890, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Lilac = Block{ID: 411, DisplayName: "Lilac", Name: "lilac", Hardness: 0, Diggable: true, DropIDs: []uint32{374}, NeedsTools: map[uint32]bool{}, MinStateID: 7891, MaxStateID: 7892, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RoseBush = Block{ID: 412, DisplayName: "Rose Bush", Name: "rose_bush", Hardness: 0, Diggable: true, DropIDs: []uint32{375}, NeedsTools: map[uint32]bool{}, MinStateID: 7893, MaxStateID: 7894, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Peony = Block{ID: 413, DisplayName: "Peony", Name: "peony", Hardness: 0, Diggable: true, DropIDs: []uint32{376}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 7895, MaxStateID: 7896, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + TallGrass = Block{ID: 414, DisplayName: "Tall Grass", Name: "tall_grass", Hardness: 0, Diggable: true, DropIDs: []uint32{377}, NeedsTools: map[uint32]bool{}, MinStateID: 7897, MaxStateID: 7898, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LargeFern = Block{ID: 415, DisplayName: "Large Fern", Name: "large_fern", Hardness: 0, Diggable: true, DropIDs: []uint32{378}, NeedsTools: map[uint32]bool{}, MinStateID: 7899, MaxStateID: 7900, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteBanner = Block{ID: 416, DisplayName: "White Banner", Name: "white_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{870}, NeedsTools: map[uint32]bool{}, MinStateID: 7901, MaxStateID: 7916, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeBanner = Block{ID: 417, DisplayName: "Orange Banner", Name: "orange_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{871}, NeedsTools: map[uint32]bool{}, MinStateID: 7917, MaxStateID: 7932, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaBanner = Block{ID: 418, DisplayName: "Magenta Banner", Name: "magenta_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{872}, NeedsTools: map[uint32]bool{}, MinStateID: 7933, MaxStateID: 7948, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueBanner = Block{ID: 419, DisplayName: "Light Blue Banner", Name: "light_blue_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{873}, NeedsTools: map[uint32]bool{}, MinStateID: 7949, MaxStateID: 7964, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowBanner = Block{ID: 420, DisplayName: "Yellow Banner", Name: "yellow_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{874}, NeedsTools: map[uint32]bool{}, MinStateID: 7965, MaxStateID: 7980, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeBanner = Block{ID: 421, DisplayName: "Lime Banner", Name: "lime_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{875}, NeedsTools: map[uint32]bool{}, MinStateID: 7981, MaxStateID: 7996, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkBanner = Block{ID: 422, DisplayName: "Pink Banner", Name: "pink_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{876}, NeedsTools: map[uint32]bool{}, MinStateID: 7997, MaxStateID: 8012, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayBanner = Block{ID: 423, DisplayName: "Gray Banner", Name: "gray_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{877}, NeedsTools: map[uint32]bool{}, MinStateID: 8013, MaxStateID: 8028, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayBanner = Block{ID: 424, DisplayName: "Light Gray Banner", Name: "light_gray_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{878}, NeedsTools: map[uint32]bool{}, MinStateID: 8029, MaxStateID: 8044, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanBanner = Block{ID: 425, DisplayName: "Cyan Banner", Name: "cyan_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{879}, NeedsTools: map[uint32]bool{}, MinStateID: 8045, MaxStateID: 8060, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleBanner = Block{ID: 426, DisplayName: "Purple Banner", Name: "purple_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{880}, NeedsTools: map[uint32]bool{}, MinStateID: 8061, MaxStateID: 8076, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueBanner = Block{ID: 427, DisplayName: "Blue Banner", Name: "blue_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{881}, NeedsTools: map[uint32]bool{}, MinStateID: 8077, MaxStateID: 8092, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownBanner = Block{ID: 428, DisplayName: "Brown Banner", Name: "brown_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{882}, NeedsTools: map[uint32]bool{}, MinStateID: 8093, MaxStateID: 8108, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenBanner = Block{ID: 429, DisplayName: "Green Banner", Name: "green_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{883}, NeedsTools: map[uint32]bool{}, MinStateID: 8109, MaxStateID: 8124, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedBanner = Block{ID: 430, DisplayName: "Red Banner", Name: "red_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{884}, NeedsTools: map[uint32]bool{}, MinStateID: 8125, MaxStateID: 8140, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackBanner = Block{ID: 431, DisplayName: "Black Banner", Name: "black_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{885}, NeedsTools: map[uint32]bool{}, MinStateID: 8141, MaxStateID: 8156, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteWallBanner = Block{ID: 432, DisplayName: "White wall banner", Name: "white_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{870}, NeedsTools: map[uint32]bool{}, MinStateID: 8157, MaxStateID: 8160, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeWallBanner = Block{ID: 433, DisplayName: "Orange wall banner", Name: "orange_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{871}, NeedsTools: map[uint32]bool{}, MinStateID: 8161, MaxStateID: 8164, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaWallBanner = Block{ID: 434, DisplayName: "Magenta wall banner", Name: "magenta_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{872}, NeedsTools: map[uint32]bool{}, MinStateID: 8165, MaxStateID: 8168, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueWallBanner = Block{ID: 435, DisplayName: "Light blue wall banner", Name: "light_blue_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{873}, NeedsTools: map[uint32]bool{}, MinStateID: 8169, MaxStateID: 8172, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowWallBanner = Block{ID: 436, DisplayName: "Yellow wall banner", Name: "yellow_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{874}, NeedsTools: map[uint32]bool{}, MinStateID: 8173, MaxStateID: 8176, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeWallBanner = Block{ID: 437, DisplayName: "Lime wall banner", Name: "lime_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{875}, NeedsTools: map[uint32]bool{}, MinStateID: 8177, MaxStateID: 8180, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkWallBanner = Block{ID: 438, DisplayName: "Pink wall banner", Name: "pink_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{876}, NeedsTools: map[uint32]bool{}, MinStateID: 8181, MaxStateID: 8184, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayWallBanner = Block{ID: 439, DisplayName: "Gray wall banner", Name: "gray_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{877}, NeedsTools: map[uint32]bool{}, MinStateID: 8185, MaxStateID: 8188, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayWallBanner = Block{ID: 440, DisplayName: "Light gray wall banner", Name: "light_gray_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{878}, NeedsTools: map[uint32]bool{}, MinStateID: 8189, MaxStateID: 8192, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanWallBanner = Block{ID: 441, DisplayName: "Cyan wall banner", Name: "cyan_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{879}, NeedsTools: map[uint32]bool{}, MinStateID: 8193, MaxStateID: 8196, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleWallBanner = Block{ID: 442, DisplayName: "Purple wall banner", Name: "purple_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{880}, NeedsTools: map[uint32]bool{}, MinStateID: 8197, MaxStateID: 8200, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueWallBanner = Block{ID: 443, DisplayName: "Blue wall banner", Name: "blue_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{881}, NeedsTools: map[uint32]bool{}, MinStateID: 8201, MaxStateID: 8204, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownWallBanner = Block{ID: 444, DisplayName: "Brown wall banner", Name: "brown_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{882}, NeedsTools: map[uint32]bool{}, MinStateID: 8205, MaxStateID: 8208, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenWallBanner = Block{ID: 445, DisplayName: "Green wall banner", Name: "green_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{883}, NeedsTools: map[uint32]bool{}, MinStateID: 8209, MaxStateID: 8212, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedWallBanner = Block{ID: 446, DisplayName: "Red wall banner", Name: "red_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{884}, NeedsTools: map[uint32]bool{}, MinStateID: 8213, MaxStateID: 8216, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackWallBanner = Block{ID: 447, DisplayName: "Black wall banner", Name: "black_wall_banner", Hardness: 1, Diggable: true, DropIDs: []uint32{885}, NeedsTools: map[uint32]bool{}, MinStateID: 8217, MaxStateID: 8220, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedSandstone = Block{ID: 448, DisplayName: "Red Sandstone", Name: "red_sandstone", Hardness: 0.8, Diggable: true, DropIDs: []uint32{418}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 8221, MaxStateID: 8221, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + ChiseledRedSandstone = Block{ID: 449, DisplayName: "Chiseled Red Sandstone", Name: "chiseled_red_sandstone", Hardness: 0.8, Diggable: true, DropIDs: []uint32{419}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8222, MaxStateID: 8222, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CutRedSandstone = Block{ID: 450, DisplayName: "Cut Red Sandstone", Name: "cut_red_sandstone", Hardness: 0.8, Diggable: true, DropIDs: []uint32{420}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8223, MaxStateID: 8223, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedSandstoneStairs = Block{ID: 451, DisplayName: "Red Sandstone Stairs", Name: "red_sandstone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{421}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 8224, MaxStateID: 8303, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + OakSlab = Block{ID: 452, DisplayName: "Oak Slab", Name: "oak_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{138}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8304, MaxStateID: 8309, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceSlab = Block{ID: 453, DisplayName: "Spruce Slab", Name: "spruce_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{139}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 8310, MaxStateID: 8315, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchSlab = Block{ID: 454, DisplayName: "Birch Slab", Name: "birch_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{140}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 8316, MaxStateID: 8321, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleSlab = Block{ID: 455, DisplayName: "Jungle Slab", Name: "jungle_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{141}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 8322, MaxStateID: 8327, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaSlab = Block{ID: 456, DisplayName: "Acacia Slab", Name: "acacia_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{142}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8328, MaxStateID: 8333, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakSlab = Block{ID: 457, DisplayName: "Dark Oak Slab", Name: "dark_oak_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{143}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 8334, MaxStateID: 8339, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StoneSlab = Block{ID: 458, DisplayName: "Stone Slab", Name: "stone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{146}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8340, MaxStateID: 8345, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SmoothStoneSlab = Block{ID: 459, DisplayName: "Smooth Stone Slab", Name: "smooth_stone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{147}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 8346, MaxStateID: 8351, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SandstoneSlab = Block{ID: 460, DisplayName: "Sandstone Slab", Name: "sandstone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{148}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 8352, MaxStateID: 8357, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CutSandstoneSlab = Block{ID: 461, DisplayName: "Cut Sandstone Slab", Name: "cut_sandstone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{149}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 8358, MaxStateID: 8363, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PetrifiedOakSlab = Block{ID: 462, DisplayName: "Petrified Oak Slab", Name: "petrified_oak_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{150}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8364, MaxStateID: 8369, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CobblestoneSlab = Block{ID: 463, DisplayName: "Cobblestone Slab", Name: "cobblestone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{151}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 8370, MaxStateID: 8375, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrickSlab = Block{ID: 464, DisplayName: "Brick Slab", Name: "brick_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{152}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8376, MaxStateID: 8381, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StoneBrickSlab = Block{ID: 465, DisplayName: "Stone Brick Slab", Name: "stone_brick_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{153}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 8382, MaxStateID: 8387, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + NetherBrickSlab = Block{ID: 466, DisplayName: "Nether Brick Slab", Name: "nether_brick_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{154}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8388, MaxStateID: 8393, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + QuartzSlab = Block{ID: 467, DisplayName: "Quartz Slab", Name: "quartz_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{155}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8394, MaxStateID: 8399, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedSandstoneSlab = Block{ID: 468, DisplayName: "Red Sandstone Slab", Name: "red_sandstone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{156}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 8400, MaxStateID: 8405, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CutRedSandstoneSlab = Block{ID: 469, DisplayName: "Cut Red Sandstone Slab", Name: "cut_red_sandstone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{157}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 8406, MaxStateID: 8411, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpurSlab = Block{ID: 470, DisplayName: "Purpur Slab", Name: "purpur_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{158}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8412, MaxStateID: 8417, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SmoothStone = Block{ID: 471, DisplayName: "Smooth Stone", Name: "smooth_stone", Hardness: 2, Diggable: true, DropIDs: []uint32{165}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8418, MaxStateID: 8418, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SmoothSandstone = Block{ID: 472, DisplayName: "Smooth Sandstone", Name: "smooth_sandstone", Hardness: 2, Diggable: true, DropIDs: []uint32{164}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8419, MaxStateID: 8419, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SmoothQuartz = Block{ID: 473, DisplayName: "Smooth Quartz Block", Name: "smooth_quartz", Hardness: 2, Diggable: true, DropIDs: []uint32{162}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8420, MaxStateID: 8420, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SmoothRedSandstone = Block{ID: 474, DisplayName: "Smooth Red Sandstone", Name: "smooth_red_sandstone", Hardness: 2, Diggable: true, DropIDs: []uint32{163}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 8421, MaxStateID: 8421, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SpruceFenceGate = Block{ID: 475, DisplayName: "Spruce Fence Gate", Name: "spruce_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{253}, NeedsTools: map[uint32]bool{}, MinStateID: 8422, MaxStateID: 8453, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchFenceGate = Block{ID: 476, DisplayName: "Birch Fence Gate", Name: "birch_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{254}, NeedsTools: map[uint32]bool{}, MinStateID: 8454, MaxStateID: 8485, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleFenceGate = Block{ID: 477, DisplayName: "Jungle Fence Gate", Name: "jungle_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{255}, NeedsTools: map[uint32]bool{}, MinStateID: 8486, MaxStateID: 8517, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaFenceGate = Block{ID: 478, DisplayName: "Acacia Fence Gate", Name: "acacia_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{256}, NeedsTools: map[uint32]bool{}, MinStateID: 8518, MaxStateID: 8549, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakFenceGate = Block{ID: 479, DisplayName: "Dark Oak Fence Gate", Name: "dark_oak_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{257}, NeedsTools: map[uint32]bool{}, MinStateID: 8550, MaxStateID: 8581, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceFence = Block{ID: 480, DisplayName: "Spruce Fence", Name: "spruce_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{209}, NeedsTools: map[uint32]bool{}, MinStateID: 8582, MaxStateID: 8613, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchFence = Block{ID: 481, DisplayName: "Birch Fence", Name: "birch_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{210}, NeedsTools: map[uint32]bool{}, MinStateID: 8614, MaxStateID: 8645, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleFence = Block{ID: 482, DisplayName: "Jungle Fence", Name: "jungle_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{211}, NeedsTools: map[uint32]bool{}, MinStateID: 8646, MaxStateID: 8677, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaFence = Block{ID: 483, DisplayName: "Acacia Fence", Name: "acacia_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{212}, NeedsTools: map[uint32]bool{}, MinStateID: 8678, MaxStateID: 8709, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakFence = Block{ID: 484, DisplayName: "Dark Oak Fence", Name: "dark_oak_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{213}, NeedsTools: map[uint32]bool{}, MinStateID: 8710, MaxStateID: 8741, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SpruceDoor = Block{ID: 485, DisplayName: "Spruce Door", Name: "spruce_door", Hardness: 3, Diggable: true, DropIDs: []uint32{559}, NeedsTools: map[uint32]bool{}, MinStateID: 8742, MaxStateID: 8805, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BirchDoor = Block{ID: 486, DisplayName: "Birch Door", Name: "birch_door", Hardness: 3, Diggable: true, DropIDs: []uint32{560}, NeedsTools: map[uint32]bool{}, MinStateID: 8806, MaxStateID: 8869, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + JungleDoor = Block{ID: 487, DisplayName: "Jungle Door", Name: "jungle_door", Hardness: 3, Diggable: true, DropIDs: []uint32{561}, NeedsTools: map[uint32]bool{}, MinStateID: 8870, MaxStateID: 8933, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AcaciaDoor = Block{ID: 488, DisplayName: "Acacia Door", Name: "acacia_door", Hardness: 3, Diggable: true, DropIDs: []uint32{562}, NeedsTools: map[uint32]bool{}, MinStateID: 8934, MaxStateID: 8997, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DarkOakDoor = Block{ID: 489, DisplayName: "Dark Oak Door", Name: "dark_oak_door", Hardness: 3, Diggable: true, DropIDs: []uint32{563}, NeedsTools: map[uint32]bool{}, MinStateID: 8998, MaxStateID: 9061, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EndRod = Block{ID: 490, DisplayName: "End Rod", Name: "end_rod", Hardness: 0, Diggable: true, DropIDs: []uint32{172}, NeedsTools: map[uint32]bool{}, MinStateID: 9062, MaxStateID: 9067, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 14} + ChorusPlant = Block{ID: 491, DisplayName: "Chorus Plant", Name: "chorus_plant", Hardness: 0.4, Diggable: true, DropIDs: []uint32{173}, NeedsTools: map[uint32]bool{}, MinStateID: 9068, MaxStateID: 9131, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + ChorusFlower = Block{ID: 492, DisplayName: "Chorus Flower", Name: "chorus_flower", Hardness: 0.4, Diggable: true, DropIDs: []uint32{174}, NeedsTools: map[uint32]bool{}, MinStateID: 9132, MaxStateID: 9137, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpurBlock = Block{ID: 493, DisplayName: "Purpur Block", Name: "purpur_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{175}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9138, MaxStateID: 9138, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpurPillar = Block{ID: 494, DisplayName: "Purpur Pillar", Name: "purpur_pillar", Hardness: 1.5, Diggable: true, DropIDs: []uint32{176}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9139, MaxStateID: 9141, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpurStairs = Block{ID: 495, DisplayName: "Purpur Stairs", Name: "purpur_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{177}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9142, MaxStateID: 9221, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + EndStoneBricks = Block{ID: 496, DisplayName: "End Stone Bricks", Name: "end_stone_bricks", Hardness: 3, Diggable: true, DropIDs: []uint32{272}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9222, MaxStateID: 9222, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Beetroots = Block{ID: 497, DisplayName: "Beetroots", Name: "beetroots", Hardness: 0, Diggable: true, DropIDs: []uint32{889}, NeedsTools: map[uint32]bool{}, MinStateID: 9223, MaxStateID: 9226, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrassPath = Block{ID: 498, DisplayName: "Grass Path", Name: "grass_path", Hardness: 0.65, Diggable: true, DropIDs: []uint32{372}, NeedsTools: map[uint32]bool{}, MinStateID: 9227, MaxStateID: 9227, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EndGateway = Block{ID: 499, DisplayName: "End Gateway", Name: "end_gateway", Hardness: 0, Diggable: false, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 9228, MaxStateID: 9228, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 15} + RepeatingCommandBlock = Block{ID: 500, DisplayName: "Repeating Command Block", Name: "repeating_command_block", Hardness: 0, Diggable: false, DropIDs: []uint32{422}, NeedsTools: map[uint32]bool{}, MinStateID: 9229, MaxStateID: 9240, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + ChainCommandBlock = Block{ID: 501, DisplayName: "Chain Command Block", Name: "chain_command_block", Hardness: 0, Diggable: false, DropIDs: []uint32{423}, NeedsTools: map[uint32]bool{}, MinStateID: 9241, MaxStateID: 9252, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + FrostedIce = Block{ID: 502, DisplayName: "Frosted Ice", Name: "frosted_ice", Hardness: 0.5, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 9253, MaxStateID: 9256, Transparent: true, FilterLightLevel: 2, EmitLightLevel: 0} + MagmaBlock = Block{ID: 503, DisplayName: "Magma Block", Name: "magma_block", Hardness: 0.5, Diggable: true, DropIDs: []uint32{424}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9257, MaxStateID: 9257, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + NetherWartBlock = Block{ID: 504, DisplayName: "Nether Wart Block", Name: "nether_wart_block", Hardness: 1, Diggable: true, DropIDs: []uint32{425}, NeedsTools: map[uint32]bool{}, MinStateID: 9258, MaxStateID: 9258, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedNetherBricks = Block{ID: 505, DisplayName: "Red Nether Bricks", Name: "red_nether_bricks", Hardness: 2, Diggable: true, DropIDs: []uint32{427}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9259, MaxStateID: 9259, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BoneBlock = Block{ID: 506, DisplayName: "Bone Block", Name: "bone_block", Hardness: 2, Diggable: true, DropIDs: []uint32{428}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9260, MaxStateID: 9262, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StructureVoid = Block{ID: 507, DisplayName: "Structure Void", Name: "structure_void", Hardness: 0, Diggable: true, DropIDs: []uint32{429}, NeedsTools: map[uint32]bool{}, MinStateID: 9263, MaxStateID: 9263, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Observer = Block{ID: 508, DisplayName: "Observer", Name: "observer", Hardness: 3, Diggable: true, DropIDs: []uint32{430}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 9264, MaxStateID: 9275, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + ShulkerBox = Block{ID: 509, DisplayName: "Shulker Box", Name: "shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{431}, NeedsTools: map[uint32]bool{}, MinStateID: 9276, MaxStateID: 9281, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteShulkerBox = Block{ID: 510, DisplayName: "White Shulker Box", Name: "white_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{432}, NeedsTools: map[uint32]bool{}, MinStateID: 9282, MaxStateID: 9287, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + OrangeShulkerBox = Block{ID: 511, DisplayName: "Orange Shulker Box", Name: "orange_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{433}, NeedsTools: map[uint32]bool{}, MinStateID: 9288, MaxStateID: 9293, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MagentaShulkerBox = Block{ID: 512, DisplayName: "Magenta Shulker Box", Name: "magenta_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{434}, NeedsTools: map[uint32]bool{}, MinStateID: 9294, MaxStateID: 9299, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightBlueShulkerBox = Block{ID: 513, DisplayName: "Light Blue Shulker Box", Name: "light_blue_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{435}, NeedsTools: map[uint32]bool{}, MinStateID: 9300, MaxStateID: 9305, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + YellowShulkerBox = Block{ID: 514, DisplayName: "Yellow Shulker Box", Name: "yellow_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{436}, NeedsTools: map[uint32]bool{}, MinStateID: 9306, MaxStateID: 9311, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LimeShulkerBox = Block{ID: 515, DisplayName: "Lime Shulker Box", Name: "lime_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{437}, NeedsTools: map[uint32]bool{}, MinStateID: 9312, MaxStateID: 9317, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PinkShulkerBox = Block{ID: 516, DisplayName: "Pink Shulker Box", Name: "pink_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{438}, NeedsTools: map[uint32]bool{}, MinStateID: 9318, MaxStateID: 9323, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GrayShulkerBox = Block{ID: 517, DisplayName: "Gray Shulker Box", Name: "gray_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{439}, NeedsTools: map[uint32]bool{}, MinStateID: 9324, MaxStateID: 9329, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + LightGrayShulkerBox = Block{ID: 518, DisplayName: "Light Gray Shulker Box", Name: "light_gray_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{440}, NeedsTools: map[uint32]bool{}, MinStateID: 9330, MaxStateID: 9335, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CyanShulkerBox = Block{ID: 519, DisplayName: "Cyan Shulker Box", Name: "cyan_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{441}, NeedsTools: map[uint32]bool{}, MinStateID: 9336, MaxStateID: 9341, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PurpleShulkerBox = Block{ID: 520, DisplayName: "Purple Shulker Box", Name: "purple_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{442}, NeedsTools: map[uint32]bool{}, MinStateID: 9342, MaxStateID: 9347, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlueShulkerBox = Block{ID: 521, DisplayName: "Blue Shulker Box", Name: "blue_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{443}, NeedsTools: map[uint32]bool{}, MinStateID: 9348, MaxStateID: 9353, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrownShulkerBox = Block{ID: 522, DisplayName: "Brown Shulker Box", Name: "brown_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{444}, NeedsTools: map[uint32]bool{}, MinStateID: 9354, MaxStateID: 9359, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GreenShulkerBox = Block{ID: 523, DisplayName: "Green Shulker Box", Name: "green_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{445}, NeedsTools: map[uint32]bool{}, MinStateID: 9360, MaxStateID: 9365, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedShulkerBox = Block{ID: 524, DisplayName: "Red Shulker Box", Name: "red_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{446}, NeedsTools: map[uint32]bool{}, MinStateID: 9366, MaxStateID: 9371, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackShulkerBox = Block{ID: 525, DisplayName: "Black Shulker Box", Name: "black_shulker_box", Hardness: 2, Diggable: true, DropIDs: []uint32{447}, NeedsTools: map[uint32]bool{}, MinStateID: 9372, MaxStateID: 9377, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WhiteGlazedTerracotta = Block{ID: 526, DisplayName: "White Glazed Terracotta", Name: "white_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{448}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9378, MaxStateID: 9381, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OrangeGlazedTerracotta = Block{ID: 527, DisplayName: "Orange Glazed Terracotta", Name: "orange_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{449}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 9382, MaxStateID: 9385, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MagentaGlazedTerracotta = Block{ID: 528, DisplayName: "Magenta Glazed Terracotta", Name: "magenta_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{450}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9386, MaxStateID: 9389, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightBlueGlazedTerracotta = Block{ID: 529, DisplayName: "Light Blue Glazed Terracotta", Name: "light_blue_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{451}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9390, MaxStateID: 9393, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + YellowGlazedTerracotta = Block{ID: 530, DisplayName: "Yellow Glazed Terracotta", Name: "yellow_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{452}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9394, MaxStateID: 9397, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LimeGlazedTerracotta = Block{ID: 531, DisplayName: "Lime Glazed Terracotta", Name: "lime_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{453}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9398, MaxStateID: 9401, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PinkGlazedTerracotta = Block{ID: 532, DisplayName: "Pink Glazed Terracotta", Name: "pink_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{454}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9402, MaxStateID: 9405, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GrayGlazedTerracotta = Block{ID: 533, DisplayName: "Gray Glazed Terracotta", Name: "gray_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{455}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9406, MaxStateID: 9409, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightGrayGlazedTerracotta = Block{ID: 534, DisplayName: "Light Gray Glazed Terracotta", Name: "light_gray_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{456}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 9410, MaxStateID: 9413, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CyanGlazedTerracotta = Block{ID: 535, DisplayName: "Cyan Glazed Terracotta", Name: "cyan_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{457}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 9414, MaxStateID: 9417, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpleGlazedTerracotta = Block{ID: 536, DisplayName: "Purple Glazed Terracotta", Name: "purple_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{458}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9418, MaxStateID: 9421, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueGlazedTerracotta = Block{ID: 537, DisplayName: "Blue Glazed Terracotta", Name: "blue_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{459}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9422, MaxStateID: 9425, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrownGlazedTerracotta = Block{ID: 538, DisplayName: "Brown Glazed Terracotta", Name: "brown_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{460}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9426, MaxStateID: 9429, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GreenGlazedTerracotta = Block{ID: 539, DisplayName: "Green Glazed Terracotta", Name: "green_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{461}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9430, MaxStateID: 9433, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedGlazedTerracotta = Block{ID: 540, DisplayName: "Red Glazed Terracotta", Name: "red_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{462}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9434, MaxStateID: 9437, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlackGlazedTerracotta = Block{ID: 541, DisplayName: "Black Glazed Terracotta", Name: "black_glazed_terracotta", Hardness: 1.4, Diggable: true, DropIDs: []uint32{463}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 9438, MaxStateID: 9441, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WhiteConcrete = Block{ID: 542, DisplayName: "White Concrete", Name: "white_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{464}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 9442, MaxStateID: 9442, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OrangeConcrete = Block{ID: 543, DisplayName: "Orange Concrete", Name: "orange_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{465}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9443, MaxStateID: 9443, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MagentaConcrete = Block{ID: 544, DisplayName: "Magenta Concrete", Name: "magenta_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{466}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9444, MaxStateID: 9444, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightBlueConcrete = Block{ID: 545, DisplayName: "Light Blue Concrete", Name: "light_blue_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{467}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9445, MaxStateID: 9445, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + YellowConcrete = Block{ID: 546, DisplayName: "Yellow Concrete", Name: "yellow_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{468}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9446, MaxStateID: 9446, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LimeConcrete = Block{ID: 547, DisplayName: "Lime Concrete", Name: "lime_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{469}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9447, MaxStateID: 9447, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PinkConcrete = Block{ID: 548, DisplayName: "Pink Concrete", Name: "pink_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{470}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9448, MaxStateID: 9448, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GrayConcrete = Block{ID: 549, DisplayName: "Gray Concrete", Name: "gray_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{471}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9449, MaxStateID: 9449, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightGrayConcrete = Block{ID: 550, DisplayName: "Light Gray Concrete", Name: "light_gray_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{472}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9450, MaxStateID: 9450, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CyanConcrete = Block{ID: 551, DisplayName: "Cyan Concrete", Name: "cyan_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{473}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9451, MaxStateID: 9451, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpleConcrete = Block{ID: 552, DisplayName: "Purple Concrete", Name: "purple_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{474}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9452, MaxStateID: 9452, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueConcrete = Block{ID: 553, DisplayName: "Blue Concrete", Name: "blue_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{475}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9453, MaxStateID: 9453, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrownConcrete = Block{ID: 554, DisplayName: "Brown Concrete", Name: "brown_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{476}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9454, MaxStateID: 9454, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GreenConcrete = Block{ID: 555, DisplayName: "Green Concrete", Name: "green_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{477}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9455, MaxStateID: 9455, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedConcrete = Block{ID: 556, DisplayName: "Red Concrete", Name: "red_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{478}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 9456, MaxStateID: 9456, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlackConcrete = Block{ID: 557, DisplayName: "Black Concrete", Name: "black_concrete", Hardness: 1.8, Diggable: true, DropIDs: []uint32{479}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9457, MaxStateID: 9457, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WhiteConcretePowder = Block{ID: 558, DisplayName: "White Concrete Powder", Name: "white_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{480}, NeedsTools: map[uint32]bool{}, MinStateID: 9458, MaxStateID: 9458, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + OrangeConcretePowder = Block{ID: 559, DisplayName: "Orange Concrete Powder", Name: "orange_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{481}, NeedsTools: map[uint32]bool{}, MinStateID: 9459, MaxStateID: 9459, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + MagentaConcretePowder = Block{ID: 560, DisplayName: "Magenta Concrete Powder", Name: "magenta_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{482}, NeedsTools: map[uint32]bool{}, MinStateID: 9460, MaxStateID: 9460, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightBlueConcretePowder = Block{ID: 561, DisplayName: "Light Blue Concrete Powder", Name: "light_blue_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{483}, NeedsTools: map[uint32]bool{}, MinStateID: 9461, MaxStateID: 9461, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + YellowConcretePowder = Block{ID: 562, DisplayName: "Yellow Concrete Powder", Name: "yellow_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{484}, NeedsTools: map[uint32]bool{}, MinStateID: 9462, MaxStateID: 9462, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LimeConcretePowder = Block{ID: 563, DisplayName: "Lime Concrete Powder", Name: "lime_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{485}, NeedsTools: map[uint32]bool{}, MinStateID: 9463, MaxStateID: 9463, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PinkConcretePowder = Block{ID: 564, DisplayName: "Pink Concrete Powder", Name: "pink_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{486}, NeedsTools: map[uint32]bool{}, MinStateID: 9464, MaxStateID: 9464, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GrayConcretePowder = Block{ID: 565, DisplayName: "Gray Concrete Powder", Name: "gray_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{487}, NeedsTools: map[uint32]bool{}, MinStateID: 9465, MaxStateID: 9465, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + LightGrayConcretePowder = Block{ID: 566, DisplayName: "Light Gray Concrete Powder", Name: "light_gray_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{488}, NeedsTools: map[uint32]bool{}, MinStateID: 9466, MaxStateID: 9466, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CyanConcretePowder = Block{ID: 567, DisplayName: "Cyan Concrete Powder", Name: "cyan_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{489}, NeedsTools: map[uint32]bool{}, MinStateID: 9467, MaxStateID: 9467, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PurpleConcretePowder = Block{ID: 568, DisplayName: "Purple Concrete Powder", Name: "purple_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{490}, NeedsTools: map[uint32]bool{}, MinStateID: 9468, MaxStateID: 9468, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueConcretePowder = Block{ID: 569, DisplayName: "Blue Concrete Powder", Name: "blue_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{491}, NeedsTools: map[uint32]bool{}, MinStateID: 9469, MaxStateID: 9469, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrownConcretePowder = Block{ID: 570, DisplayName: "Brown Concrete Powder", Name: "brown_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{492}, NeedsTools: map[uint32]bool{}, MinStateID: 9470, MaxStateID: 9470, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + GreenConcretePowder = Block{ID: 571, DisplayName: "Green Concrete Powder", Name: "green_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{493}, NeedsTools: map[uint32]bool{}, MinStateID: 9471, MaxStateID: 9471, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RedConcretePowder = Block{ID: 572, DisplayName: "Red Concrete Powder", Name: "red_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{494}, NeedsTools: map[uint32]bool{}, MinStateID: 9472, MaxStateID: 9472, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlackConcretePowder = Block{ID: 573, DisplayName: "Black Concrete Powder", Name: "black_concrete_powder", Hardness: 0.5, Diggable: true, DropIDs: []uint32{495}, NeedsTools: map[uint32]bool{}, MinStateID: 9473, MaxStateID: 9473, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Kelp = Block{ID: 574, DisplayName: "Kelp", Name: "kelp", Hardness: 0, Diggable: true, DropIDs: []uint32{134}, NeedsTools: map[uint32]bool{}, MinStateID: 9474, MaxStateID: 9499, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + KelpPlant = Block{ID: 575, DisplayName: "Kelp Plant", Name: "kelp_plant", Hardness: 0, Diggable: true, DropIDs: []uint32{134}, NeedsTools: map[uint32]bool{}, MinStateID: 9500, MaxStateID: 9500, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DriedKelpBlock = Block{ID: 576, DisplayName: "Dried Kelp Block", Name: "dried_kelp_block", Hardness: 0.5, Diggable: true, DropIDs: []uint32{676}, NeedsTools: map[uint32]bool{}, MinStateID: 9501, MaxStateID: 9501, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + TurtleEgg = Block{ID: 577, DisplayName: "Turtle Egg", Name: "turtle_egg", Hardness: 0.5, Diggable: true, DropIDs: []uint32{496}, NeedsTools: map[uint32]bool{}, MinStateID: 9502, MaxStateID: 9513, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DeadTubeCoralBlock = Block{ID: 578, DisplayName: "Dead Tube Coral Block", Name: "dead_tube_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{497}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 9514, MaxStateID: 9514, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DeadBrainCoralBlock = Block{ID: 579, DisplayName: "Dead Brain Coral Block", Name: "dead_brain_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{498}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9515, MaxStateID: 9515, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DeadBubbleCoralBlock = Block{ID: 580, DisplayName: "Dead Bubble Coral Block", Name: "dead_bubble_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{499}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9516, MaxStateID: 9516, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DeadFireCoralBlock = Block{ID: 581, DisplayName: "Dead Fire Coral Block", Name: "dead_fire_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{500}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9517, MaxStateID: 9517, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DeadHornCoralBlock = Block{ID: 582, DisplayName: "Dead Horn Coral Block", Name: "dead_horn_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{501}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9518, MaxStateID: 9518, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + TubeCoralBlock = Block{ID: 583, DisplayName: "Tube Coral Block", Name: "tube_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{502}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9519, MaxStateID: 9519, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BrainCoralBlock = Block{ID: 584, DisplayName: "Brain Coral Block", Name: "brain_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{503}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 9520, MaxStateID: 9520, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BubbleCoralBlock = Block{ID: 585, DisplayName: "Bubble Coral Block", Name: "bubble_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{504}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 9521, MaxStateID: 9521, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + FireCoralBlock = Block{ID: 586, DisplayName: "Fire Coral Block", Name: "fire_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{505}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 9522, MaxStateID: 9522, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + HornCoralBlock = Block{ID: 587, DisplayName: "Horn Coral Block", Name: "horn_coral_block", Hardness: 1.5, Diggable: true, DropIDs: []uint32{506}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 9523, MaxStateID: 9523, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + DeadTubeCoral = Block{ID: 588, DisplayName: "Dead Tube Coral", Name: "dead_tube_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{516}, NeedsTools: map[uint32]bool{}, MinStateID: 9524, MaxStateID: 9525, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBrainCoral = Block{ID: 589, DisplayName: "Dead Brain Coral", Name: "dead_brain_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{512}, NeedsTools: map[uint32]bool{}, MinStateID: 9526, MaxStateID: 9527, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBubbleCoral = Block{ID: 590, DisplayName: "Dead Bubble Coral", Name: "dead_bubble_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{513}, NeedsTools: map[uint32]bool{}, MinStateID: 9528, MaxStateID: 9529, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadFireCoral = Block{ID: 591, DisplayName: "Dead Fire Coral", Name: "dead_fire_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{514}, NeedsTools: map[uint32]bool{}, MinStateID: 9530, MaxStateID: 9531, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadHornCoral = Block{ID: 592, DisplayName: "Dead Horn Coral", Name: "dead_horn_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{515}, NeedsTools: map[uint32]bool{}, MinStateID: 9532, MaxStateID: 9533, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TubeCoral = Block{ID: 593, DisplayName: "Tube Coral", Name: "tube_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{507}, NeedsTools: map[uint32]bool{}, MinStateID: 9534, MaxStateID: 9535, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrainCoral = Block{ID: 594, DisplayName: "Brain Coral", Name: "brain_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{508}, NeedsTools: map[uint32]bool{}, MinStateID: 9536, MaxStateID: 9537, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BubbleCoral = Block{ID: 595, DisplayName: "Bubble Coral", Name: "bubble_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{509}, NeedsTools: map[uint32]bool{}, MinStateID: 9538, MaxStateID: 9539, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + FireCoral = Block{ID: 596, DisplayName: "Fire Coral", Name: "fire_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{510}, NeedsTools: map[uint32]bool{}, MinStateID: 9540, MaxStateID: 9541, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + HornCoral = Block{ID: 597, DisplayName: "Horn Coral", Name: "horn_coral", Hardness: 0, Diggable: true, DropIDs: []uint32{511}, NeedsTools: map[uint32]bool{}, MinStateID: 9542, MaxStateID: 9543, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadTubeCoralFan = Block{ID: 598, DisplayName: "Dead Tube Coral Fan", Name: "dead_tube_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{522}, NeedsTools: map[uint32]bool{}, MinStateID: 9544, MaxStateID: 9545, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBrainCoralFan = Block{ID: 599, DisplayName: "Dead Brain Coral Fan", Name: "dead_brain_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{523}, NeedsTools: map[uint32]bool{}, MinStateID: 9546, MaxStateID: 9547, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBubbleCoralFan = Block{ID: 600, DisplayName: "Dead Bubble Coral Fan", Name: "dead_bubble_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{524}, NeedsTools: map[uint32]bool{}, MinStateID: 9548, MaxStateID: 9549, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadFireCoralFan = Block{ID: 601, DisplayName: "Dead Fire Coral Fan", Name: "dead_fire_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{525}, NeedsTools: map[uint32]bool{}, MinStateID: 9550, MaxStateID: 9551, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadHornCoralFan = Block{ID: 602, DisplayName: "Dead Horn Coral Fan", Name: "dead_horn_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{526}, NeedsTools: map[uint32]bool{}, MinStateID: 9552, MaxStateID: 9553, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TubeCoralFan = Block{ID: 603, DisplayName: "Tube Coral Fan", Name: "tube_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{517}, NeedsTools: map[uint32]bool{}, MinStateID: 9554, MaxStateID: 9555, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrainCoralFan = Block{ID: 604, DisplayName: "Brain Coral Fan", Name: "brain_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{518}, NeedsTools: map[uint32]bool{}, MinStateID: 9556, MaxStateID: 9557, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BubbleCoralFan = Block{ID: 605, DisplayName: "Bubble Coral Fan", Name: "bubble_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{519}, NeedsTools: map[uint32]bool{}, MinStateID: 9558, MaxStateID: 9559, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + FireCoralFan = Block{ID: 606, DisplayName: "Fire Coral Fan", Name: "fire_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{520}, NeedsTools: map[uint32]bool{}, MinStateID: 9560, MaxStateID: 9561, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + HornCoralFan = Block{ID: 607, DisplayName: "Horn Coral Fan", Name: "horn_coral_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{521}, NeedsTools: map[uint32]bool{}, MinStateID: 9562, MaxStateID: 9563, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadTubeCoralWallFan = Block{ID: 608, DisplayName: "Dead Tube Coral Wall Fan", Name: "dead_tube_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{522}, NeedsTools: map[uint32]bool{}, MinStateID: 9564, MaxStateID: 9571, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBrainCoralWallFan = Block{ID: 609, DisplayName: "Dead Brain Coral Wall Fan", Name: "dead_brain_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{523}, NeedsTools: map[uint32]bool{}, MinStateID: 9572, MaxStateID: 9579, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadBubbleCoralWallFan = Block{ID: 610, DisplayName: "Dead Bubble Coral Wall Fan", Name: "dead_bubble_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{524}, NeedsTools: map[uint32]bool{}, MinStateID: 9580, MaxStateID: 9587, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadFireCoralWallFan = Block{ID: 611, DisplayName: "Dead Fire Coral Wall Fan", Name: "dead_fire_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{525}, NeedsTools: map[uint32]bool{}, MinStateID: 9588, MaxStateID: 9595, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DeadHornCoralWallFan = Block{ID: 612, DisplayName: "Dead Horn Coral Wall Fan", Name: "dead_horn_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{526}, NeedsTools: map[uint32]bool{}, MinStateID: 9596, MaxStateID: 9603, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TubeCoralWallFan = Block{ID: 613, DisplayName: "Tube Coral Wall Fan", Name: "tube_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{517}, NeedsTools: map[uint32]bool{}, MinStateID: 9604, MaxStateID: 9611, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrainCoralWallFan = Block{ID: 614, DisplayName: "Brain Coral Wall Fan", Name: "brain_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{518}, NeedsTools: map[uint32]bool{}, MinStateID: 9612, MaxStateID: 9619, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BubbleCoralWallFan = Block{ID: 615, DisplayName: "Bubble Coral Wall Fan", Name: "bubble_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{519}, NeedsTools: map[uint32]bool{}, MinStateID: 9620, MaxStateID: 9627, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + FireCoralWallFan = Block{ID: 616, DisplayName: "Fire Coral Wall Fan", Name: "fire_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{520}, NeedsTools: map[uint32]bool{}, MinStateID: 9628, MaxStateID: 9635, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + HornCoralWallFan = Block{ID: 617, DisplayName: "Horn Coral Wall Fan", Name: "horn_coral_wall_fan", Hardness: 0, Diggable: true, DropIDs: []uint32{521}, NeedsTools: map[uint32]bool{}, MinStateID: 9636, MaxStateID: 9643, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SeaPickle = Block{ID: 618, DisplayName: "Sea Pickle", Name: "sea_pickle", Hardness: 0, Diggable: true, DropIDs: []uint32{93}, NeedsTools: map[uint32]bool{}, MinStateID: 9644, MaxStateID: 9651, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlueIce = Block{ID: 619, DisplayName: "Blue Ice", Name: "blue_ice", Hardness: 2.8, Diggable: true, DropIDs: []uint32{527}, NeedsTools: map[uint32]bool{}, MinStateID: 9652, MaxStateID: 9652, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Conduit = Block{ID: 620, DisplayName: "Conduit", Name: "conduit", Hardness: 3, Diggable: true, DropIDs: []uint32{528}, NeedsTools: map[uint32]bool{}, MinStateID: 9653, MaxStateID: 9654, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BambooSapling = Block{ID: 621, DisplayName: "Bamboo Shoot", Name: "bamboo_sapling", Hardness: 1, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 9655, MaxStateID: 9655, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Bamboo = Block{ID: 622, DisplayName: "Bamboo", Name: "bamboo", Hardness: 1, Diggable: true, DropIDs: []uint32{135}, NeedsTools: map[uint32]bool{}, MinStateID: 9656, MaxStateID: 9667, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PottedBamboo = Block{ID: 623, DisplayName: "Potted Bamboo", Name: "potted_bamboo", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 135}, NeedsTools: map[uint32]bool{}, MinStateID: 9668, MaxStateID: 9668, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + VoidAir = Block{ID: 624, DisplayName: "Void Air", Name: "void_air", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 9669, MaxStateID: 9669, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CaveAir = Block{ID: 625, DisplayName: "Cave Air", Name: "cave_air", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 9670, MaxStateID: 9670, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BubbleColumn = Block{ID: 626, DisplayName: "Bubble Column", Name: "bubble_column", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 9671, MaxStateID: 9672, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PolishedGraniteStairs = Block{ID: 627, DisplayName: "Polished Granite Stairs", Name: "polished_granite_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{529}, NeedsTools: map[uint32]bool{}, MinStateID: 9673, MaxStateID: 9752, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + SmoothRedSandstoneStairs = Block{ID: 628, DisplayName: "Smooth Red Sandstone Stairs", Name: "smooth_red_sandstone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{530}, NeedsTools: map[uint32]bool{}, MinStateID: 9753, MaxStateID: 9832, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + MossyStoneBrickStairs = Block{ID: 629, DisplayName: "Mossy Stone Brick Stairs", Name: "mossy_stone_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{531}, NeedsTools: map[uint32]bool{}, MinStateID: 9833, MaxStateID: 9912, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedDioriteStairs = Block{ID: 630, DisplayName: "Polished Diorite Stairs", Name: "polished_diorite_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{532}, NeedsTools: map[uint32]bool{}, MinStateID: 9913, MaxStateID: 9992, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + MossyCobblestoneStairs = Block{ID: 631, DisplayName: "Mossy Cobblestone Stairs", Name: "mossy_cobblestone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{533}, NeedsTools: map[uint32]bool{}, MinStateID: 9993, MaxStateID: 10072, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + EndStoneBrickStairs = Block{ID: 632, DisplayName: "End Stone Brick Stairs", Name: "end_stone_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{534}, NeedsTools: map[uint32]bool{}, MinStateID: 10073, MaxStateID: 10152, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + StoneStairs = Block{ID: 633, DisplayName: "Stone Stairs", Name: "stone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{535}, NeedsTools: map[uint32]bool{}, MinStateID: 10153, MaxStateID: 10232, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + SmoothSandstoneStairs = Block{ID: 634, DisplayName: "Smooth Sandstone Stairs", Name: "smooth_sandstone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{536}, NeedsTools: map[uint32]bool{}, MinStateID: 10233, MaxStateID: 10312, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + SmoothQuartzStairs = Block{ID: 635, DisplayName: "Smooth Quartz Stairs", Name: "smooth_quartz_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{537}, NeedsTools: map[uint32]bool{}, MinStateID: 10313, MaxStateID: 10392, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + GraniteStairs = Block{ID: 636, DisplayName: "Granite Stairs", Name: "granite_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{538}, NeedsTools: map[uint32]bool{}, MinStateID: 10393, MaxStateID: 10472, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + AndesiteStairs = Block{ID: 637, DisplayName: "Andesite Stairs", Name: "andesite_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{539}, NeedsTools: map[uint32]bool{}, MinStateID: 10473, MaxStateID: 10552, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + RedNetherBrickStairs = Block{ID: 638, DisplayName: "Red Nether Brick Stairs", Name: "red_nether_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{540}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10553, MaxStateID: 10632, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedAndesiteStairs = Block{ID: 639, DisplayName: "Polished Andesite Stairs", Name: "polished_andesite_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{541}, NeedsTools: map[uint32]bool{}, MinStateID: 10633, MaxStateID: 10712, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + DioriteStairs = Block{ID: 640, DisplayName: "Diorite Stairs", Name: "diorite_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{542}, NeedsTools: map[uint32]bool{}, MinStateID: 10713, MaxStateID: 10792, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedGraniteSlab = Block{ID: 641, DisplayName: "Polished Granite Slab", Name: "polished_granite_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{543}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 10793, MaxStateID: 10798, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SmoothRedSandstoneSlab = Block{ID: 642, DisplayName: "Smooth Red Sandstone Slab", Name: "smooth_red_sandstone_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{544}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 10799, MaxStateID: 10804, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MossyStoneBrickSlab = Block{ID: 643, DisplayName: "Mossy Stone Brick Slab", Name: "mossy_stone_brick_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{545}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 10805, MaxStateID: 10810, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PolishedDioriteSlab = Block{ID: 644, DisplayName: "Polished Diorite Slab", Name: "polished_diorite_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{546}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 10811, MaxStateID: 10816, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MossyCobblestoneSlab = Block{ID: 645, DisplayName: "Mossy Cobblestone Slab", Name: "mossy_cobblestone_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{547}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10817, MaxStateID: 10822, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EndStoneBrickSlab = Block{ID: 646, DisplayName: "End Stone Brick Slab", Name: "end_stone_brick_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{548}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10823, MaxStateID: 10828, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SmoothSandstoneSlab = Block{ID: 647, DisplayName: "Smooth Sandstone Slab", Name: "smooth_sandstone_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{549}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 10829, MaxStateID: 10834, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SmoothQuartzSlab = Block{ID: 648, DisplayName: "Smooth Quartz Slab", Name: "smooth_quartz_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{550}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10835, MaxStateID: 10840, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GraniteSlab = Block{ID: 649, DisplayName: "Granite Slab", Name: "granite_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{551}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10841, MaxStateID: 10846, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AndesiteSlab = Block{ID: 650, DisplayName: "Andesite Slab", Name: "andesite_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{552}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 10847, MaxStateID: 10852, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedNetherBrickSlab = Block{ID: 651, DisplayName: "Red Nether Brick Slab", Name: "red_nether_brick_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{553}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10853, MaxStateID: 10858, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PolishedAndesiteSlab = Block{ID: 652, DisplayName: "Polished Andesite Slab", Name: "polished_andesite_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{554}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 10859, MaxStateID: 10864, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DioriteSlab = Block{ID: 653, DisplayName: "Diorite Slab", Name: "diorite_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{555}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 10865, MaxStateID: 10870, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BrickWall = Block{ID: 654, DisplayName: "Brick Wall", Name: "brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{289}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 10871, MaxStateID: 11194, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PrismarineWall = Block{ID: 655, DisplayName: "Prismarine Wall", Name: "prismarine_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{290}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 11195, MaxStateID: 11518, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedSandstoneWall = Block{ID: 656, DisplayName: "Red Sandstone Wall", Name: "red_sandstone_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{291}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 11519, MaxStateID: 11842, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + MossyStoneBrickWall = Block{ID: 657, DisplayName: "Mossy Stone Brick Wall", Name: "mossy_stone_brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{292}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 11843, MaxStateID: 12166, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GraniteWall = Block{ID: 658, DisplayName: "Granite Wall", Name: "granite_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{293}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 12167, MaxStateID: 12490, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StoneBrickWall = Block{ID: 659, DisplayName: "Stone Brick Wall", Name: "stone_brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{294}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 12491, MaxStateID: 12814, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + NetherBrickWall = Block{ID: 660, DisplayName: "Nether Brick Wall", Name: "nether_brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{295}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 12815, MaxStateID: 13138, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + AndesiteWall = Block{ID: 661, DisplayName: "Andesite Wall", Name: "andesite_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{296}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 13139, MaxStateID: 13462, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + RedNetherBrickWall = Block{ID: 662, DisplayName: "Red Nether Brick Wall", Name: "red_nether_brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{297}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 13463, MaxStateID: 13786, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SandstoneWall = Block{ID: 663, DisplayName: "Sandstone Wall", Name: "sandstone_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{298}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 13787, MaxStateID: 14110, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + EndStoneBrickWall = Block{ID: 664, DisplayName: "End Stone Brick Wall", Name: "end_stone_brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{299}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 14111, MaxStateID: 14434, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + DioriteWall = Block{ID: 665, DisplayName: "Diorite Wall", Name: "diorite_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{300}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 14435, MaxStateID: 14758, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Scaffolding = Block{ID: 666, DisplayName: "Scaffolding", Name: "scaffolding", Hardness: 0, Diggable: true, DropIDs: []uint32{556}, NeedsTools: map[uint32]bool{}, MinStateID: 14759, MaxStateID: 14790, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + Loom = Block{ID: 667, DisplayName: "Loom", Name: "loom", Hardness: 2.5, Diggable: true, DropIDs: []uint32{928}, NeedsTools: map[uint32]bool{}, MinStateID: 14791, MaxStateID: 14794, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Barrel = Block{ID: 668, DisplayName: "Barrel", Name: "barrel", Hardness: 2.5, Diggable: true, DropIDs: []uint32{936}, NeedsTools: map[uint32]bool{}, MinStateID: 14795, MaxStateID: 14806, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Smoker = Block{ID: 669, DisplayName: "Smoker", Name: "smoker", Hardness: 3.5, Diggable: true, DropIDs: []uint32{937}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 14807, MaxStateID: 14814, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + BlastFurnace = Block{ID: 670, DisplayName: "Blast Furnace", Name: "blast_furnace", Hardness: 3.5, Diggable: true, DropIDs: []uint32{938}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 14815, MaxStateID: 14822, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + CartographyTable = Block{ID: 671, DisplayName: "Cartography Table", Name: "cartography_table", Hardness: 2.5, Diggable: true, DropIDs: []uint32{939}, NeedsTools: map[uint32]bool{}, MinStateID: 14823, MaxStateID: 14823, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + FletchingTable = Block{ID: 672, DisplayName: "Fletching Table", Name: "fletching_table", Hardness: 2.5, Diggable: true, DropIDs: []uint32{940}, NeedsTools: map[uint32]bool{}, MinStateID: 14824, MaxStateID: 14824, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Grindstone = Block{ID: 673, DisplayName: "Grindstone", Name: "grindstone", Hardness: 2, Diggable: true, DropIDs: []uint32{941}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 14825, MaxStateID: 14836, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Lectern = Block{ID: 674, DisplayName: "Lectern", Name: "lectern", Hardness: 2.5, Diggable: true, DropIDs: []uint32{942}, NeedsTools: map[uint32]bool{}, MinStateID: 14837, MaxStateID: 14852, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SmithingTable = Block{ID: 675, DisplayName: "Smithing Table", Name: "smithing_table", Hardness: 2.5, Diggable: true, DropIDs: []uint32{943}, NeedsTools: map[uint32]bool{}, MinStateID: 14853, MaxStateID: 14853, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Stonecutter = Block{ID: 676, DisplayName: "Stonecutter", Name: "stonecutter", Hardness: 3.5, Diggable: true, DropIDs: []uint32{944}, NeedsTools: map[uint32]bool{}, MinStateID: 14854, MaxStateID: 14857, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Bell = Block{ID: 677, DisplayName: "Bell", Name: "bell", Hardness: 5, Diggable: true, DropIDs: []uint32{945}, NeedsTools: map[uint32]bool{}, MinStateID: 14858, MaxStateID: 14889, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Lantern = Block{ID: 678, DisplayName: "Lantern", Name: "lantern", Hardness: 3.5, Diggable: true, DropIDs: []uint32{946}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 14890, MaxStateID: 14893, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + SoulLantern = Block{ID: 679, DisplayName: "Soul Lantern", Name: "soul_lantern", Hardness: 3.5, Diggable: true, DropIDs: []uint32{947}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 14894, MaxStateID: 14897, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Campfire = Block{ID: 680, DisplayName: "Campfire", Name: "campfire", Hardness: 2, Diggable: true, DropIDs: []uint32{949}, NeedsTools: map[uint32]bool{}, MinStateID: 14898, MaxStateID: 14929, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SoulCampfire = Block{ID: 681, DisplayName: "Soul Campfire", Name: "soul_campfire", Hardness: 2, Diggable: true, DropIDs: []uint32{950}, NeedsTools: map[uint32]bool{}, MinStateID: 14930, MaxStateID: 14961, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + SweetBerryBush = Block{ID: 682, DisplayName: "Sweet Berry Bush", Name: "sweet_berry_bush", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 14962, MaxStateID: 14965, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedStem = Block{ID: 683, DisplayName: "Warped Stem", Name: "warped_stem", Hardness: 2, Diggable: true, DropIDs: []uint32{44}, NeedsTools: map[uint32]bool{}, MinStateID: 14966, MaxStateID: 14968, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedWarpedStem = Block{ID: 684, DisplayName: "Stripped Warped Stem", Name: "stripped_warped_stem", Hardness: 2, Diggable: true, DropIDs: []uint32{52}, NeedsTools: map[uint32]bool{}, MinStateID: 14969, MaxStateID: 14971, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedHyphae = Block{ID: 685, DisplayName: "Warped Hyphae", Name: "warped_hyphae", Hardness: 2, Diggable: true, DropIDs: []uint32{68}, NeedsTools: map[uint32]bool{}, MinStateID: 14972, MaxStateID: 14974, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedWarpedHyphae = Block{ID: 686, DisplayName: "Stripped Warped Hyphae", Name: "stripped_warped_hyphae", Hardness: 2, Diggable: true, DropIDs: []uint32{60}, NeedsTools: map[uint32]bool{}, MinStateID: 14975, MaxStateID: 14977, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedNylium = Block{ID: 687, DisplayName: "Warped Nylium", Name: "warped_nylium", Hardness: 0.4, Diggable: true, DropIDs: []uint32{13}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 14978, MaxStateID: 14978, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedFungus = Block{ID: 688, DisplayName: "Warped Fungus", Name: "warped_fungus", Hardness: 0, Diggable: true, DropIDs: []uint32{127}, NeedsTools: map[uint32]bool{}, MinStateID: 14979, MaxStateID: 14979, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedWartBlock = Block{ID: 689, DisplayName: "Warped Wart Block", Name: "warped_wart_block", Hardness: 1, Diggable: true, DropIDs: []uint32{426}, NeedsTools: map[uint32]bool{}, MinStateID: 14980, MaxStateID: 14980, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedRoots = Block{ID: 690, DisplayName: "Warped Roots", Name: "warped_roots", Hardness: 0, Diggable: true, DropIDs: []uint32{129}, NeedsTools: map[uint32]bool{}, MinStateID: 14981, MaxStateID: 14981, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + NetherSprouts = Block{ID: 691, DisplayName: "Nether Sprouts", Name: "nether_sprouts", Hardness: 0, Diggable: true, DropIDs: []uint32{130}, NeedsTools: map[uint32]bool{}, MinStateID: 14982, MaxStateID: 14982, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonStem = Block{ID: 692, DisplayName: "Crimson Stem", Name: "crimson_stem", Hardness: 2, Diggable: true, DropIDs: []uint32{43}, NeedsTools: map[uint32]bool{}, MinStateID: 14983, MaxStateID: 14985, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedCrimsonStem = Block{ID: 693, DisplayName: "Stripped Crimson Stem", Name: "stripped_crimson_stem", Hardness: 2, Diggable: true, DropIDs: []uint32{51}, NeedsTools: map[uint32]bool{}, MinStateID: 14986, MaxStateID: 14988, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrimsonHyphae = Block{ID: 694, DisplayName: "Crimson Hyphae", Name: "crimson_hyphae", Hardness: 2, Diggable: true, DropIDs: []uint32{67}, NeedsTools: map[uint32]bool{}, MinStateID: 14989, MaxStateID: 14991, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + StrippedCrimsonHyphae = Block{ID: 695, DisplayName: "Stripped Crimson Hyphae", Name: "stripped_crimson_hyphae", Hardness: 2, Diggable: true, DropIDs: []uint32{59}, NeedsTools: map[uint32]bool{}, MinStateID: 14992, MaxStateID: 14994, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrimsonNylium = Block{ID: 696, DisplayName: "Crimson Nylium", Name: "crimson_nylium", Hardness: 0.4, Diggable: true, DropIDs: []uint32{12}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 14995, MaxStateID: 14995, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrimsonFungus = Block{ID: 697, DisplayName: "Crimson Fungus", Name: "crimson_fungus", Hardness: 0, Diggable: true, DropIDs: []uint32{126}, NeedsTools: map[uint32]bool{}, MinStateID: 14996, MaxStateID: 14996, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Shroomlight = Block{ID: 698, DisplayName: "Shroomlight", Name: "shroomlight", Hardness: 1, Diggable: true, DropIDs: []uint32{951}, NeedsTools: map[uint32]bool{}, MinStateID: 14997, MaxStateID: 14997, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WeepingVines = Block{ID: 699, DisplayName: "Weeping Vines", Name: "weeping_vines", Hardness: 0, Diggable: true, DropIDs: []uint32{131}, NeedsTools: map[uint32]bool{}, MinStateID: 14998, MaxStateID: 15023, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WeepingVinesPlant = Block{ID: 700, DisplayName: "Weeping Vines Plant", Name: "weeping_vines_plant", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 15024, MaxStateID: 15024, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TwistingVines = Block{ID: 701, DisplayName: "Twisting Vines", Name: "twisting_vines", Hardness: 0, Diggable: true, DropIDs: []uint32{132}, NeedsTools: map[uint32]bool{}, MinStateID: 15025, MaxStateID: 15050, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + TwistingVinesPlant = Block{ID: 702, DisplayName: "Twisting Vines Plant", Name: "twisting_vines_plant", Hardness: 0, Diggable: true, DropIDs: []uint32{}, NeedsTools: map[uint32]bool{}, MinStateID: 15051, MaxStateID: 15051, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonRoots = Block{ID: 703, DisplayName: "Crimson Roots", Name: "crimson_roots", Hardness: 0, Diggable: true, DropIDs: []uint32{128}, NeedsTools: map[uint32]bool{}, MinStateID: 15052, MaxStateID: 15052, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonPlanks = Block{ID: 704, DisplayName: "Crimson Planks", Name: "crimson_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{21}, NeedsTools: map[uint32]bool{}, MinStateID: 15053, MaxStateID: 15053, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedPlanks = Block{ID: 705, DisplayName: "Warped Planks", Name: "warped_planks", Hardness: 2, Diggable: true, DropIDs: []uint32{22}, NeedsTools: map[uint32]bool{}, MinStateID: 15054, MaxStateID: 15054, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrimsonSlab = Block{ID: 706, DisplayName: "Crimson Slab", Name: "crimson_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{144}, NeedsTools: map[uint32]bool{}, MinStateID: 15055, MaxStateID: 15060, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedSlab = Block{ID: 707, DisplayName: "Warped Slab", Name: "warped_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{145}, NeedsTools: map[uint32]bool{}, MinStateID: 15061, MaxStateID: 15066, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + CrimsonPressurePlate = Block{ID: 708, DisplayName: "Crimson Pressure Plate", Name: "crimson_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{197}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 15067, MaxStateID: 15068, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedPressurePlate = Block{ID: 709, DisplayName: "Warped Pressure Plate", Name: "warped_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{198}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 15069, MaxStateID: 15070, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonFence = Block{ID: 710, DisplayName: "Crimson Fence", Name: "crimson_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{214}, NeedsTools: map[uint32]bool{}, MinStateID: 15071, MaxStateID: 15102, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedFence = Block{ID: 711, DisplayName: "Warped Fence", Name: "warped_fence", Hardness: 2, Diggable: true, DropIDs: []uint32{215}, NeedsTools: map[uint32]bool{}, MinStateID: 15103, MaxStateID: 15134, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonTrapdoor = Block{ID: 712, DisplayName: "Crimson Trapdoor", Name: "crimson_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{232}, NeedsTools: map[uint32]bool{}, MinStateID: 15135, MaxStateID: 15198, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedTrapdoor = Block{ID: 713, DisplayName: "Warped Trapdoor", Name: "warped_trapdoor", Hardness: 3, Diggable: true, DropIDs: []uint32{233}, NeedsTools: map[uint32]bool{}, MinStateID: 15199, MaxStateID: 15262, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonFenceGate = Block{ID: 714, DisplayName: "Crimson Fence Gate", Name: "crimson_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{258}, NeedsTools: map[uint32]bool{}, MinStateID: 15263, MaxStateID: 15294, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedFenceGate = Block{ID: 715, DisplayName: "Warped Fence Gate", Name: "warped_fence_gate", Hardness: 2, Diggable: true, DropIDs: []uint32{259}, NeedsTools: map[uint32]bool{}, MinStateID: 15295, MaxStateID: 15326, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonStairs = Block{ID: 716, DisplayName: "Crimson Stairs", Name: "crimson_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{283}, NeedsTools: map[uint32]bool{}, MinStateID: 15327, MaxStateID: 15406, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + WarpedStairs = Block{ID: 717, DisplayName: "Warped Stairs", Name: "warped_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{284}, NeedsTools: map[uint32]bool{}, MinStateID: 15407, MaxStateID: 15486, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + CrimsonButton = Block{ID: 718, DisplayName: "Crimson Button", Name: "crimson_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{311}, NeedsTools: map[uint32]bool{}, MinStateID: 15487, MaxStateID: 15510, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedButton = Block{ID: 719, DisplayName: "Warped Button", Name: "warped_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{312}, NeedsTools: map[uint32]bool{}, MinStateID: 15511, MaxStateID: 15534, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonDoor = Block{ID: 720, DisplayName: "Crimson Door", Name: "crimson_door", Hardness: 3, Diggable: true, DropIDs: []uint32{564}, NeedsTools: map[uint32]bool{}, MinStateID: 15535, MaxStateID: 15598, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedDoor = Block{ID: 721, DisplayName: "Warped Door", Name: "warped_door", Hardness: 3, Diggable: true, DropIDs: []uint32{565}, NeedsTools: map[uint32]bool{}, MinStateID: 15599, MaxStateID: 15662, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonSign = Block{ID: 722, DisplayName: "Crimson Sign", Name: "crimson_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{658}, NeedsTools: map[uint32]bool{}, MinStateID: 15663, MaxStateID: 15694, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedSign = Block{ID: 723, DisplayName: "Warped Sign", Name: "warped_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{659}, NeedsTools: map[uint32]bool{}, MinStateID: 15695, MaxStateID: 15726, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + CrimsonWallSign = Block{ID: 724, DisplayName: "Crimson Wall Sign", Name: "crimson_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{658}, NeedsTools: map[uint32]bool{}, MinStateID: 15727, MaxStateID: 15734, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + WarpedWallSign = Block{ID: 725, DisplayName: "Warped Wall Sign", Name: "warped_wall_sign", Hardness: 1, Diggable: true, DropIDs: []uint32{659}, NeedsTools: map[uint32]bool{}, MinStateID: 15735, MaxStateID: 15742, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + StructureBlock = Block{ID: 726, DisplayName: "Structure Block", Name: "structure_block", Hardness: 0, Diggable: false, DropIDs: []uint32{568}, NeedsTools: map[uint32]bool{}, MinStateID: 15743, MaxStateID: 15746, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Jigsaw = Block{ID: 727, DisplayName: "Jigsaw Block", Name: "jigsaw", Hardness: 0, Diggable: false, DropIDs: []uint32{569}, NeedsTools: map[uint32]bool{}, MinStateID: 15747, MaxStateID: 15758, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Composter = Block{ID: 728, DisplayName: "Composter", Name: "composter", Hardness: 0.6, Diggable: true, DropIDs: []uint32{935}, NeedsTools: map[uint32]bool{}, MinStateID: 15759, MaxStateID: 15767, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Target = Block{ID: 729, DisplayName: "Target", Name: "target", Hardness: 0.5, Diggable: true, DropIDs: []uint32{961}, NeedsTools: map[uint32]bool{}, MinStateID: 15768, MaxStateID: 15783, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + BeeNest = Block{ID: 730, DisplayName: "Bee Nest", Name: "bee_nest", Hardness: 0.3, Diggable: true, DropIDs: []uint32{953}, NeedsTools: map[uint32]bool{}, MinStateID: 15784, MaxStateID: 15807, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Beehive = Block{ID: 731, DisplayName: "Beehive", Name: "beehive", Hardness: 0.6, Diggable: true, DropIDs: []uint32{954}, NeedsTools: map[uint32]bool{}, MinStateID: 15808, MaxStateID: 15831, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + HoneyBlock = Block{ID: 732, DisplayName: "Honey Block", Name: "honey_block", Hardness: 0, Diggable: true, DropIDs: []uint32{956}, NeedsTools: map[uint32]bool{}, MinStateID: 15832, MaxStateID: 15832, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + HoneycombBlock = Block{ID: 733, DisplayName: "Honeycomb Block", Name: "honeycomb_block", Hardness: 0.6, Diggable: true, DropIDs: []uint32{957}, NeedsTools: map[uint32]bool{}, MinStateID: 15833, MaxStateID: 15833, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + NetheriteBlock = Block{ID: 734, DisplayName: "Block of Netherite", Name: "netherite_block", Hardness: 50, Diggable: true, DropIDs: []uint32{959}, NeedsTools: map[uint32]bool{605: true}, MinStateID: 15834, MaxStateID: 15834, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + AncientDebris = Block{ID: 735, DisplayName: "Ancient Debris", Name: "ancient_debris", Hardness: 30, Diggable: true, DropIDs: []uint32{960}, NeedsTools: map[uint32]bool{605: true}, MinStateID: 15835, MaxStateID: 15835, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CryingObsidian = Block{ID: 736, DisplayName: "Crying Obsidian", Name: "crying_obsidian", Hardness: 50, Diggable: true, DropIDs: []uint32{962}, NeedsTools: map[uint32]bool{605: true}, MinStateID: 15836, MaxStateID: 15836, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + RespawnAnchor = Block{ID: 737, DisplayName: "Respawn Anchor", Name: "respawn_anchor", Hardness: 50, Diggable: true, DropIDs: []uint32{975}, NeedsTools: map[uint32]bool{605: true}, MinStateID: 15837, MaxStateID: 15841, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 2} + PottedCrimsonFungus = Block{ID: 738, DisplayName: "Potted Crimson Fungus", Name: "potted_crimson_fungus", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 126}, NeedsTools: map[uint32]bool{}, MinStateID: 15842, MaxStateID: 15842, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedWarpedFungus = Block{ID: 739, DisplayName: "Potted Warped Fungus", Name: "potted_warped_fungus", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 127}, NeedsTools: map[uint32]bool{}, MinStateID: 15843, MaxStateID: 15843, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedCrimsonRoots = Block{ID: 740, DisplayName: "Potted Crimson Roots", Name: "potted_crimson_roots", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 128}, NeedsTools: map[uint32]bool{}, MinStateID: 15844, MaxStateID: 15844, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PottedWarpedRoots = Block{ID: 741, DisplayName: "Potted Warped Roots", Name: "potted_warped_roots", Hardness: 0, Diggable: true, DropIDs: []uint32{829, 129}, NeedsTools: map[uint32]bool{}, MinStateID: 15845, MaxStateID: 15845, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + Lodestone = Block{ID: 742, DisplayName: "Lodestone", Name: "lodestone", Hardness: 3.5, Diggable: true, DropIDs: []uint32{958}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 15846, MaxStateID: 15846, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + Blackstone = Block{ID: 743, DisplayName: "Blackstone", Name: "blackstone", Hardness: 1.5, Diggable: true, DropIDs: []uint32{963}, NeedsTools: map[uint32]bool{600: true, 605: true, 585: true, 590: true, 595: true}, MinStateID: 15847, MaxStateID: 15847, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + BlackstoneStairs = Block{ID: 744, DisplayName: "Blackstone Stairs", Name: "blackstone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{965}, NeedsTools: map[uint32]bool{}, MinStateID: 15848, MaxStateID: 15927, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + BlackstoneWall = Block{ID: 745, DisplayName: "Blackstone Wall", Name: "blackstone_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{301}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 15928, MaxStateID: 16251, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + BlackstoneSlab = Block{ID: 746, DisplayName: "Blackstone Slab", Name: "blackstone_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{964}, NeedsTools: map[uint32]bool{}, MinStateID: 16252, MaxStateID: 16257, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstone = Block{ID: 747, DisplayName: "Polished Blackstone", Name: "polished_blackstone", Hardness: 2, Diggable: true, DropIDs: []uint32{967}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 16258, MaxStateID: 16258, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstoneBricks = Block{ID: 748, DisplayName: "Polished Blackstone Bricks", Name: "polished_blackstone_bricks", Hardness: 1.5, Diggable: true, DropIDs: []uint32{971}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 16259, MaxStateID: 16259, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrackedPolishedBlackstoneBricks = Block{ID: 749, DisplayName: "Cracked Polished Blackstone Bricks", Name: "cracked_polished_blackstone_bricks", Hardness: 0, Diggable: true, DropIDs: []uint32{974}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 16260, MaxStateID: 16260, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + ChiseledPolishedBlackstone = Block{ID: 750, DisplayName: "Chiseled Polished Blackstone", Name: "chiseled_polished_blackstone", Hardness: 1.5, Diggable: true, DropIDs: []uint32{970}, NeedsTools: map[uint32]bool{}, MinStateID: 16261, MaxStateID: 16261, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstoneBrickSlab = Block{ID: 751, DisplayName: "Polished Blackstone Brick Slab", Name: "polished_blackstone_brick_slab", Hardness: 2, Diggable: true, DropIDs: []uint32{972}, NeedsTools: map[uint32]bool{}, MinStateID: 16262, MaxStateID: 16267, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstoneBrickStairs = Block{ID: 752, DisplayName: "Polished Blackstone Brick Stairs", Name: "polished_blackstone_brick_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{973}, NeedsTools: map[uint32]bool{}, MinStateID: 16268, MaxStateID: 16347, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstoneBrickWall = Block{ID: 753, DisplayName: "Polished Blackstone Brick Wall", Name: "polished_blackstone_brick_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{303}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 16348, MaxStateID: 16671, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + GildedBlackstone = Block{ID: 754, DisplayName: "Gilded Blackstone", Name: "gilded_blackstone", Hardness: 0, Diggable: true, DropIDs: []uint32{966}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 16672, MaxStateID: 16672, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstoneStairs = Block{ID: 755, DisplayName: "Polished Blackstone Stairs", Name: "polished_blackstone_stairs", Hardness: 0, Diggable: true, DropIDs: []uint32{969}, NeedsTools: map[uint32]bool{}, MinStateID: 16673, MaxStateID: 16752, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstoneSlab = Block{ID: 756, DisplayName: "Polished Blackstone Slab", Name: "polished_blackstone_slab", Hardness: 0, Diggable: true, DropIDs: []uint32{968}, NeedsTools: map[uint32]bool{}, MinStateID: 16753, MaxStateID: 16758, Transparent: true, FilterLightLevel: 15, EmitLightLevel: 0} + PolishedBlackstonePressurePlate = Block{ID: 757, DisplayName: "Polished Blackstone Pressure Plate", Name: "polished_blackstone_pressure_plate", Hardness: 0.5, Diggable: true, DropIDs: []uint32{199}, NeedsTools: map[uint32]bool{605: true, 585: true, 590: true, 595: true, 600: true}, MinStateID: 16759, MaxStateID: 16760, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PolishedBlackstoneButton = Block{ID: 758, DisplayName: "Polished Blackstone Button", Name: "polished_blackstone_button", Hardness: 0.5, Diggable: true, DropIDs: []uint32{313}, NeedsTools: map[uint32]bool{}, MinStateID: 16761, MaxStateID: 16784, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + PolishedBlackstoneWall = Block{ID: 759, DisplayName: "Polished Blackstone Wall", Name: "polished_blackstone_wall", Hardness: 0, Diggable: true, DropIDs: []uint32{302}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 16785, MaxStateID: 17108, Transparent: true, FilterLightLevel: 0, EmitLightLevel: 0} + ChiseledNetherBricks = Block{ID: 760, DisplayName: "Chiseled Nether Bricks", Name: "chiseled_nether_bricks", Hardness: 2, Diggable: true, DropIDs: []uint32{266}, NeedsTools: map[uint32]bool{595: true, 600: true, 605: true, 585: true, 590: true}, MinStateID: 17109, MaxStateID: 17109, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + CrackedNetherBricks = Block{ID: 761, DisplayName: "Cracked Nether Bricks", Name: "cracked_nether_bricks", Hardness: 2, Diggable: true, DropIDs: []uint32{265}, NeedsTools: map[uint32]bool{590: true, 595: true, 600: true, 605: true, 585: true}, MinStateID: 17110, MaxStateID: 17110, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} + QuartzBricks = Block{ID: 762, DisplayName: "Quartz Bricks", Name: "quartz_bricks", Hardness: 0, Diggable: true, DropIDs: []uint32{326}, NeedsTools: map[uint32]bool{585: true, 590: true, 595: true, 600: true, 605: true}, MinStateID: 17111, MaxStateID: 17111, Transparent: false, FilterLightLevel: 15, EmitLightLevel: 0} +) + +// ByID is an index of minecraft blocks by their ID. +var ByID = map[ID]*Block{ + 0: &Air, + 1: &Stone, + 2: &Granite, + 3: &PolishedGranite, + 4: &Diorite, + 5: &PolishedDiorite, + 6: &Andesite, + 7: &PolishedAndesite, + 8: &GrassBlock, + 9: &Dirt, + 10: &CoarseDirt, + 11: &Podzol, + 12: &Cobblestone, + 13: &OakPlanks, + 14: &SprucePlanks, + 15: &BirchPlanks, + 16: &JunglePlanks, + 17: &AcaciaPlanks, + 18: &DarkOakPlanks, + 19: &OakSapling, + 20: &SpruceSapling, + 21: &BirchSapling, + 22: &JungleSapling, + 23: &AcaciaSapling, + 24: &DarkOakSapling, + 25: &Bedrock, + 26: &Water, + 27: &Lava, + 28: &Sand, + 29: &RedSand, + 30: &Gravel, + 31: &GoldOre, + 32: &IronOre, + 33: &CoalOre, + 34: &NetherGoldOre, + 35: &OakLog, + 36: &SpruceLog, + 37: &BirchLog, + 38: &JungleLog, + 39: &AcaciaLog, + 40: &DarkOakLog, + 41: &StrippedSpruceLog, + 42: &StrippedBirchLog, + 43: &StrippedJungleLog, + 44: &StrippedAcaciaLog, + 45: &StrippedDarkOakLog, + 46: &StrippedOakLog, + 47: &OakWood, + 48: &SpruceWood, + 49: &BirchWood, + 50: &JungleWood, + 51: &AcaciaWood, + 52: &DarkOakWood, + 53: &StrippedOakWood, + 54: &StrippedSpruceWood, + 55: &StrippedBirchWood, + 56: &StrippedJungleWood, + 57: &StrippedAcaciaWood, + 58: &StrippedDarkOakWood, + 59: &OakLeaves, + 60: &SpruceLeaves, + 61: &BirchLeaves, + 62: &JungleLeaves, + 63: &AcaciaLeaves, + 64: &DarkOakLeaves, + 65: &Sponge, + 66: &WetSponge, + 67: &Glass, + 68: &LapisOre, + 69: &LapisBlock, + 70: &Dispenser, + 71: &Sandstone, + 72: &ChiseledSandstone, + 73: &CutSandstone, + 74: &NoteBlock, + 75: &WhiteBed, + 76: &OrangeBed, + 77: &MagentaBed, + 78: &LightBlueBed, + 79: &YellowBed, + 80: &LimeBed, + 81: &PinkBed, + 82: &GrayBed, + 83: &LightGrayBed, + 84: &CyanBed, + 85: &PurpleBed, + 86: &BlueBed, + 87: &BrownBed, + 88: &GreenBed, + 89: &RedBed, + 90: &BlackBed, + 91: &PoweredRail, + 92: &DetectorRail, + 93: &StickyPiston, + 94: &Cobweb, + 95: &Grass, + 96: &Fern, + 97: &DeadBush, + 98: &Seagrass, + 99: &TallSeagrass, + 100: &Piston, + 101: &PistonHead, + 102: &WhiteWool, + 103: &OrangeWool, + 104: &MagentaWool, + 105: &LightBlueWool, + 106: &YellowWool, + 107: &LimeWool, + 108: &PinkWool, + 109: &GrayWool, + 110: &LightGrayWool, + 111: &CyanWool, + 112: &PurpleWool, + 113: &BlueWool, + 114: &BrownWool, + 115: &GreenWool, + 116: &RedWool, + 117: &BlackWool, + 118: &MovingPiston, + 119: &Dandelion, + 120: &Poppy, + 121: &BlueOrchid, + 122: &Allium, + 123: &AzureBluet, + 124: &RedTulip, + 125: &OrangeTulip, + 126: &WhiteTulip, + 127: &PinkTulip, + 128: &OxeyeDaisy, + 129: &Cornflower, + 130: &WitherRose, + 131: &LilyOfTheValley, + 132: &BrownMushroom, + 133: &RedMushroom, + 134: &GoldBlock, + 135: &IronBlock, + 136: &Bricks, + 137: &Tnt, + 138: &Bookshelf, + 139: &MossyCobblestone, + 140: &Obsidian, + 141: &Torch, + 142: &WallTorch, + 143: &Fire, + 144: &SoulFire, + 145: &Spawner, + 146: &OakStairs, + 147: &Chest, + 148: &RedstoneWire, + 149: &DiamondOre, + 150: &DiamondBlock, + 151: &CraftingTable, + 152: &Wheat, + 153: &Farmland, + 154: &Furnace, + 155: &OakSign, + 156: &SpruceSign, + 157: &BirchSign, + 158: &AcaciaSign, + 159: &JungleSign, + 160: &DarkOakSign, + 161: &OakDoor, + 162: &Ladder, + 163: &Rail, + 164: &CobblestoneStairs, + 165: &OakWallSign, + 166: &SpruceWallSign, + 167: &BirchWallSign, + 168: &AcaciaWallSign, + 169: &JungleWallSign, + 170: &DarkOakWallSign, + 171: &Lever, + 172: &StonePressurePlate, + 173: &IronDoor, + 174: &OakPressurePlate, + 175: &SprucePressurePlate, + 176: &BirchPressurePlate, + 177: &JunglePressurePlate, + 178: &AcaciaPressurePlate, + 179: &DarkOakPressurePlate, + 180: &RedstoneOre, + 181: &RedstoneTorch, + 182: &RedstoneWallTorch, + 183: &StoneButton, + 184: &Snow, + 185: &Ice, + 186: &SnowBlock, + 187: &Cactus, + 188: &Clay, + 189: &SugarCane, + 190: &Jukebox, + 191: &OakFence, + 192: &Pumpkin, + 193: &Netherrack, + 194: &SoulSand, + 195: &SoulSoil, + 196: &Basalt, + 197: &PolishedBasalt, + 198: &SoulTorch, + 199: &SoulWallTorch, + 200: &Glowstone, + 201: &NetherPortal, + 202: &CarvedPumpkin, + 203: &JackOLantern, + 204: &Cake, + 205: &Repeater, + 206: &WhiteStainedGlass, + 207: &OrangeStainedGlass, + 208: &MagentaStainedGlass, + 209: &LightBlueStainedGlass, + 210: &YellowStainedGlass, + 211: &LimeStainedGlass, + 212: &PinkStainedGlass, + 213: &GrayStainedGlass, + 214: &LightGrayStainedGlass, + 215: &CyanStainedGlass, + 216: &PurpleStainedGlass, + 217: &BlueStainedGlass, + 218: &BrownStainedGlass, + 219: &GreenStainedGlass, + 220: &RedStainedGlass, + 221: &BlackStainedGlass, + 222: &OakTrapdoor, + 223: &SpruceTrapdoor, + 224: &BirchTrapdoor, + 225: &JungleTrapdoor, + 226: &AcaciaTrapdoor, + 227: &DarkOakTrapdoor, + 228: &StoneBricks, + 229: &MossyStoneBricks, + 230: &CrackedStoneBricks, + 231: &ChiseledStoneBricks, + 232: &InfestedStone, + 233: &InfestedCobblestone, + 234: &InfestedStoneBricks, + 235: &InfestedMossyStoneBricks, + 236: &InfestedCrackedStoneBricks, + 237: &InfestedChiseledStoneBricks, + 238: &BrownMushroomBlock, + 239: &RedMushroomBlock, + 240: &MushroomStem, + 241: &IronBars, + 242: &Chain, + 243: &GlassPane, + 244: &Melon, + 245: &AttachedPumpkinStem, + 246: &AttachedMelonStem, + 247: &PumpkinStem, + 248: &MelonStem, + 249: &Vine, + 250: &OakFenceGate, + 251: &BrickStairs, + 252: &StoneBrickStairs, + 253: &Mycelium, + 254: &LilyPad, + 255: &NetherBricks, + 256: &NetherBrickFence, + 257: &NetherBrickStairs, + 258: &NetherWart, + 259: &EnchantingTable, + 260: &BrewingStand, + 261: &Cauldron, + 262: &EndPortal, + 263: &EndPortalFrame, + 264: &EndStone, + 265: &DragonEgg, + 266: &RedstoneLamp, + 267: &Cocoa, + 268: &SandstoneStairs, + 269: &EmeraldOre, + 270: &EnderChest, + 271: &TripwireHook, + 272: &Tripwire, + 273: &EmeraldBlock, + 274: &SpruceStairs, + 275: &BirchStairs, + 276: &JungleStairs, + 277: &CommandBlock, + 278: &Beacon, + 279: &CobblestoneWall, + 280: &MossyCobblestoneWall, + 281: &FlowerPot, + 282: &PottedOakSapling, + 283: &PottedSpruceSapling, + 284: &PottedBirchSapling, + 285: &PottedJungleSapling, + 286: &PottedAcaciaSapling, + 287: &PottedDarkOakSapling, + 288: &PottedFern, + 289: &PottedDandelion, + 290: &PottedPoppy, + 291: &PottedBlueOrchid, + 292: &PottedAllium, + 293: &PottedAzureBluet, + 294: &PottedRedTulip, + 295: &PottedOrangeTulip, + 296: &PottedWhiteTulip, + 297: &PottedPinkTulip, + 298: &PottedOxeyeDaisy, + 299: &PottedCornflower, + 300: &PottedLilyOfTheValley, + 301: &PottedWitherRose, + 302: &PottedRedMushroom, + 303: &PottedBrownMushroom, + 304: &PottedDeadBush, + 305: &PottedCactus, + 306: &Carrots, + 307: &Potatoes, + 308: &OakButton, + 309: &SpruceButton, + 310: &BirchButton, + 311: &JungleButton, + 312: &AcaciaButton, + 313: &DarkOakButton, + 314: &SkeletonSkull, + 315: &SkeletonWallSkull, + 316: &WitherSkeletonSkull, + 317: &WitherSkeletonWallSkull, + 318: &ZombieHead, + 319: &ZombieWallHead, + 320: &PlayerHead, + 321: &PlayerWallHead, + 322: &CreeperHead, + 323: &CreeperWallHead, + 324: &DragonHead, + 325: &DragonWallHead, + 326: &Anvil, + 327: &ChippedAnvil, + 328: &DamagedAnvil, + 329: &TrappedChest, + 330: &LightWeightedPressurePlate, + 331: &HeavyWeightedPressurePlate, + 332: &Comparator, + 333: &DaylightDetector, + 334: &RedstoneBlock, + 335: &NetherQuartzOre, + 336: &Hopper, + 337: &QuartzBlock, + 338: &ChiseledQuartzBlock, + 339: &QuartzPillar, + 340: &QuartzStairs, + 341: &ActivatorRail, + 342: &Dropper, + 343: &WhiteTerracotta, + 344: &OrangeTerracotta, + 345: &MagentaTerracotta, + 346: &LightBlueTerracotta, + 347: &YellowTerracotta, + 348: &LimeTerracotta, + 349: &PinkTerracotta, + 350: &GrayTerracotta, + 351: &LightGrayTerracotta, + 352: &CyanTerracotta, + 353: &PurpleTerracotta, + 354: &BlueTerracotta, + 355: &BrownTerracotta, + 356: &GreenTerracotta, + 357: &RedTerracotta, + 358: &BlackTerracotta, + 359: &WhiteStainedGlassPane, + 360: &OrangeStainedGlassPane, + 361: &MagentaStainedGlassPane, + 362: &LightBlueStainedGlassPane, + 363: &YellowStainedGlassPane, + 364: &LimeStainedGlassPane, + 365: &PinkStainedGlassPane, + 366: &GrayStainedGlassPane, + 367: &LightGrayStainedGlassPane, + 368: &CyanStainedGlassPane, + 369: &PurpleStainedGlassPane, + 370: &BlueStainedGlassPane, + 371: &BrownStainedGlassPane, + 372: &GreenStainedGlassPane, + 373: &RedStainedGlassPane, + 374: &BlackStainedGlassPane, + 375: &AcaciaStairs, + 376: &DarkOakStairs, + 377: &SlimeBlock, + 378: &Barrier, + 379: &IronTrapdoor, + 380: &Prismarine, + 381: &PrismarineBricks, + 382: &DarkPrismarine, + 383: &PrismarineStairs, + 384: &PrismarineBrickStairs, + 385: &DarkPrismarineStairs, + 386: &PrismarineSlab, + 387: &PrismarineBrickSlab, + 388: &DarkPrismarineSlab, + 389: &SeaLantern, + 390: &HayBlock, + 391: &WhiteCarpet, + 392: &OrangeCarpet, + 393: &MagentaCarpet, + 394: &LightBlueCarpet, + 395: &YellowCarpet, + 396: &LimeCarpet, + 397: &PinkCarpet, + 398: &GrayCarpet, + 399: &LightGrayCarpet, + 400: &CyanCarpet, + 401: &PurpleCarpet, + 402: &BlueCarpet, + 403: &BrownCarpet, + 404: &GreenCarpet, + 405: &RedCarpet, + 406: &BlackCarpet, + 407: &Terracotta, + 408: &CoalBlock, + 409: &PackedIce, + 410: &Sunflower, + 411: &Lilac, + 412: &RoseBush, + 413: &Peony, + 414: &TallGrass, + 415: &LargeFern, + 416: &WhiteBanner, + 417: &OrangeBanner, + 418: &MagentaBanner, + 419: &LightBlueBanner, + 420: &YellowBanner, + 421: &LimeBanner, + 422: &PinkBanner, + 423: &GrayBanner, + 424: &LightGrayBanner, + 425: &CyanBanner, + 426: &PurpleBanner, + 427: &BlueBanner, + 428: &BrownBanner, + 429: &GreenBanner, + 430: &RedBanner, + 431: &BlackBanner, + 432: &WhiteWallBanner, + 433: &OrangeWallBanner, + 434: &MagentaWallBanner, + 435: &LightBlueWallBanner, + 436: &YellowWallBanner, + 437: &LimeWallBanner, + 438: &PinkWallBanner, + 439: &GrayWallBanner, + 440: &LightGrayWallBanner, + 441: &CyanWallBanner, + 442: &PurpleWallBanner, + 443: &BlueWallBanner, + 444: &BrownWallBanner, + 445: &GreenWallBanner, + 446: &RedWallBanner, + 447: &BlackWallBanner, + 448: &RedSandstone, + 449: &ChiseledRedSandstone, + 450: &CutRedSandstone, + 451: &RedSandstoneStairs, + 452: &OakSlab, + 453: &SpruceSlab, + 454: &BirchSlab, + 455: &JungleSlab, + 456: &AcaciaSlab, + 457: &DarkOakSlab, + 458: &StoneSlab, + 459: &SmoothStoneSlab, + 460: &SandstoneSlab, + 461: &CutSandstoneSlab, + 462: &PetrifiedOakSlab, + 463: &CobblestoneSlab, + 464: &BrickSlab, + 465: &StoneBrickSlab, + 466: &NetherBrickSlab, + 467: &QuartzSlab, + 468: &RedSandstoneSlab, + 469: &CutRedSandstoneSlab, + 470: &PurpurSlab, + 471: &SmoothStone, + 472: &SmoothSandstone, + 473: &SmoothQuartz, + 474: &SmoothRedSandstone, + 475: &SpruceFenceGate, + 476: &BirchFenceGate, + 477: &JungleFenceGate, + 478: &AcaciaFenceGate, + 479: &DarkOakFenceGate, + 480: &SpruceFence, + 481: &BirchFence, + 482: &JungleFence, + 483: &AcaciaFence, + 484: &DarkOakFence, + 485: &SpruceDoor, + 486: &BirchDoor, + 487: &JungleDoor, + 488: &AcaciaDoor, + 489: &DarkOakDoor, + 490: &EndRod, + 491: &ChorusPlant, + 492: &ChorusFlower, + 493: &PurpurBlock, + 494: &PurpurPillar, + 495: &PurpurStairs, + 496: &EndStoneBricks, + 497: &Beetroots, + 498: &GrassPath, + 499: &EndGateway, + 500: &RepeatingCommandBlock, + 501: &ChainCommandBlock, + 502: &FrostedIce, + 503: &MagmaBlock, + 504: &NetherWartBlock, + 505: &RedNetherBricks, + 506: &BoneBlock, + 507: &StructureVoid, + 508: &Observer, + 509: &ShulkerBox, + 510: &WhiteShulkerBox, + 511: &OrangeShulkerBox, + 512: &MagentaShulkerBox, + 513: &LightBlueShulkerBox, + 514: &YellowShulkerBox, + 515: &LimeShulkerBox, + 516: &PinkShulkerBox, + 517: &GrayShulkerBox, + 518: &LightGrayShulkerBox, + 519: &CyanShulkerBox, + 520: &PurpleShulkerBox, + 521: &BlueShulkerBox, + 522: &BrownShulkerBox, + 523: &GreenShulkerBox, + 524: &RedShulkerBox, + 525: &BlackShulkerBox, + 526: &WhiteGlazedTerracotta, + 527: &OrangeGlazedTerracotta, + 528: &MagentaGlazedTerracotta, + 529: &LightBlueGlazedTerracotta, + 530: &YellowGlazedTerracotta, + 531: &LimeGlazedTerracotta, + 532: &PinkGlazedTerracotta, + 533: &GrayGlazedTerracotta, + 534: &LightGrayGlazedTerracotta, + 535: &CyanGlazedTerracotta, + 536: &PurpleGlazedTerracotta, + 537: &BlueGlazedTerracotta, + 538: &BrownGlazedTerracotta, + 539: &GreenGlazedTerracotta, + 540: &RedGlazedTerracotta, + 541: &BlackGlazedTerracotta, + 542: &WhiteConcrete, + 543: &OrangeConcrete, + 544: &MagentaConcrete, + 545: &LightBlueConcrete, + 546: &YellowConcrete, + 547: &LimeConcrete, + 548: &PinkConcrete, + 549: &GrayConcrete, + 550: &LightGrayConcrete, + 551: &CyanConcrete, + 552: &PurpleConcrete, + 553: &BlueConcrete, + 554: &BrownConcrete, + 555: &GreenConcrete, + 556: &RedConcrete, + 557: &BlackConcrete, + 558: &WhiteConcretePowder, + 559: &OrangeConcretePowder, + 560: &MagentaConcretePowder, + 561: &LightBlueConcretePowder, + 562: &YellowConcretePowder, + 563: &LimeConcretePowder, + 564: &PinkConcretePowder, + 565: &GrayConcretePowder, + 566: &LightGrayConcretePowder, + 567: &CyanConcretePowder, + 568: &PurpleConcretePowder, + 569: &BlueConcretePowder, + 570: &BrownConcretePowder, + 571: &GreenConcretePowder, + 572: &RedConcretePowder, + 573: &BlackConcretePowder, + 574: &Kelp, + 575: &KelpPlant, + 576: &DriedKelpBlock, + 577: &TurtleEgg, + 578: &DeadTubeCoralBlock, + 579: &DeadBrainCoralBlock, + 580: &DeadBubbleCoralBlock, + 581: &DeadFireCoralBlock, + 582: &DeadHornCoralBlock, + 583: &TubeCoralBlock, + 584: &BrainCoralBlock, + 585: &BubbleCoralBlock, + 586: &FireCoralBlock, + 587: &HornCoralBlock, + 588: &DeadTubeCoral, + 589: &DeadBrainCoral, + 590: &DeadBubbleCoral, + 591: &DeadFireCoral, + 592: &DeadHornCoral, + 593: &TubeCoral, + 594: &BrainCoral, + 595: &BubbleCoral, + 596: &FireCoral, + 597: &HornCoral, + 598: &DeadTubeCoralFan, + 599: &DeadBrainCoralFan, + 600: &DeadBubbleCoralFan, + 601: &DeadFireCoralFan, + 602: &DeadHornCoralFan, + 603: &TubeCoralFan, + 604: &BrainCoralFan, + 605: &BubbleCoralFan, + 606: &FireCoralFan, + 607: &HornCoralFan, + 608: &DeadTubeCoralWallFan, + 609: &DeadBrainCoralWallFan, + 610: &DeadBubbleCoralWallFan, + 611: &DeadFireCoralWallFan, + 612: &DeadHornCoralWallFan, + 613: &TubeCoralWallFan, + 614: &BrainCoralWallFan, + 615: &BubbleCoralWallFan, + 616: &FireCoralWallFan, + 617: &HornCoralWallFan, + 618: &SeaPickle, + 619: &BlueIce, + 620: &Conduit, + 621: &BambooSapling, + 622: &Bamboo, + 623: &PottedBamboo, + 624: &VoidAir, + 625: &CaveAir, + 626: &BubbleColumn, + 627: &PolishedGraniteStairs, + 628: &SmoothRedSandstoneStairs, + 629: &MossyStoneBrickStairs, + 630: &PolishedDioriteStairs, + 631: &MossyCobblestoneStairs, + 632: &EndStoneBrickStairs, + 633: &StoneStairs, + 634: &SmoothSandstoneStairs, + 635: &SmoothQuartzStairs, + 636: &GraniteStairs, + 637: &AndesiteStairs, + 638: &RedNetherBrickStairs, + 639: &PolishedAndesiteStairs, + 640: &DioriteStairs, + 641: &PolishedGraniteSlab, + 642: &SmoothRedSandstoneSlab, + 643: &MossyStoneBrickSlab, + 644: &PolishedDioriteSlab, + 645: &MossyCobblestoneSlab, + 646: &EndStoneBrickSlab, + 647: &SmoothSandstoneSlab, + 648: &SmoothQuartzSlab, + 649: &GraniteSlab, + 650: &AndesiteSlab, + 651: &RedNetherBrickSlab, + 652: &PolishedAndesiteSlab, + 653: &DioriteSlab, + 654: &BrickWall, + 655: &PrismarineWall, + 656: &RedSandstoneWall, + 657: &MossyStoneBrickWall, + 658: &GraniteWall, + 659: &StoneBrickWall, + 660: &NetherBrickWall, + 661: &AndesiteWall, + 662: &RedNetherBrickWall, + 663: &SandstoneWall, + 664: &EndStoneBrickWall, + 665: &DioriteWall, + 666: &Scaffolding, + 667: &Loom, + 668: &Barrel, + 669: &Smoker, + 670: &BlastFurnace, + 671: &CartographyTable, + 672: &FletchingTable, + 673: &Grindstone, + 674: &Lectern, + 675: &SmithingTable, + 676: &Stonecutter, + 677: &Bell, + 678: &Lantern, + 679: &SoulLantern, + 680: &Campfire, + 681: &SoulCampfire, + 682: &SweetBerryBush, + 683: &WarpedStem, + 684: &StrippedWarpedStem, + 685: &WarpedHyphae, + 686: &StrippedWarpedHyphae, + 687: &WarpedNylium, + 688: &WarpedFungus, + 689: &WarpedWartBlock, + 690: &WarpedRoots, + 691: &NetherSprouts, + 692: &CrimsonStem, + 693: &StrippedCrimsonStem, + 694: &CrimsonHyphae, + 695: &StrippedCrimsonHyphae, + 696: &CrimsonNylium, + 697: &CrimsonFungus, + 698: &Shroomlight, + 699: &WeepingVines, + 700: &WeepingVinesPlant, + 701: &TwistingVines, + 702: &TwistingVinesPlant, + 703: &CrimsonRoots, + 704: &CrimsonPlanks, + 705: &WarpedPlanks, + 706: &CrimsonSlab, + 707: &WarpedSlab, + 708: &CrimsonPressurePlate, + 709: &WarpedPressurePlate, + 710: &CrimsonFence, + 711: &WarpedFence, + 712: &CrimsonTrapdoor, + 713: &WarpedTrapdoor, + 714: &CrimsonFenceGate, + 715: &WarpedFenceGate, + 716: &CrimsonStairs, + 717: &WarpedStairs, + 718: &CrimsonButton, + 719: &WarpedButton, + 720: &CrimsonDoor, + 721: &WarpedDoor, + 722: &CrimsonSign, + 723: &WarpedSign, + 724: &CrimsonWallSign, + 725: &WarpedWallSign, + 726: &StructureBlock, + 727: &Jigsaw, + 728: &Composter, + 729: &Target, + 730: &BeeNest, + 731: &Beehive, + 732: &HoneyBlock, + 733: &HoneycombBlock, + 734: &NetheriteBlock, + 735: &AncientDebris, + 736: &CryingObsidian, + 737: &RespawnAnchor, + 738: &PottedCrimsonFungus, + 739: &PottedWarpedFungus, + 740: &PottedCrimsonRoots, + 741: &PottedWarpedRoots, + 742: &Lodestone, + 743: &Blackstone, + 744: &BlackstoneStairs, + 745: &BlackstoneWall, + 746: &BlackstoneSlab, + 747: &PolishedBlackstone, + 748: &PolishedBlackstoneBricks, + 749: &CrackedPolishedBlackstoneBricks, + 750: &ChiseledPolishedBlackstone, + 751: &PolishedBlackstoneBrickSlab, + 752: &PolishedBlackstoneBrickStairs, + 753: &PolishedBlackstoneBrickWall, + 754: &GildedBlackstone, + 755: &PolishedBlackstoneStairs, + 756: &PolishedBlackstoneSlab, + 757: &PolishedBlackstonePressurePlate, + 758: &PolishedBlackstoneButton, + 759: &PolishedBlackstoneWall, + 760: &ChiseledNetherBricks, + 761: &CrackedNetherBricks, + 762: &QuartzBricks, +} + +// StateID maps all possible state IDs to a corresponding block ID. +var StateID = map[uint32]ID{ + 0: 0, + 1: 1, + 2: 2, + 3: 3, + 4: 4, + 5: 5, + 6: 6, + 7: 7, + 8: 8, + 9: 8, + 10: 9, + 11: 10, + 12: 11, + 13: 11, + 14: 12, + 15: 13, + 16: 14, + 17: 15, + 18: 16, + 19: 17, + 20: 18, + 21: 19, + 22: 19, + 23: 20, + 24: 20, + 25: 21, + 26: 21, + 27: 22, + 28: 22, + 29: 23, + 30: 23, + 31: 24, + 32: 24, + 33: 25, + 34: 26, + 35: 26, + 36: 26, + 37: 26, + 38: 26, + 39: 26, + 40: 26, + 41: 26, + 42: 26, + 43: 26, + 44: 26, + 45: 26, + 46: 26, + 47: 26, + 48: 26, + 49: 26, + 50: 27, + 51: 27, + 52: 27, + 53: 27, + 54: 27, + 55: 27, + 56: 27, + 57: 27, + 58: 27, + 59: 27, + 60: 27, + 61: 27, + 62: 27, + 63: 27, + 64: 27, + 65: 27, + 66: 28, + 67: 29, + 68: 30, + 69: 31, + 70: 32, + 71: 33, + 72: 34, + 73: 35, + 74: 35, + 75: 35, + 76: 36, + 77: 36, + 78: 36, + 79: 37, + 80: 37, + 81: 37, + 82: 38, + 83: 38, + 84: 38, + 85: 39, + 86: 39, + 87: 39, + 88: 40, + 89: 40, + 90: 40, + 91: 41, + 92: 41, + 93: 41, + 94: 42, + 95: 42, + 96: 42, + 97: 43, + 98: 43, + 99: 43, + 100: 44, + 101: 44, + 102: 44, + 103: 45, + 104: 45, + 105: 45, + 106: 46, + 107: 46, + 108: 46, + 109: 47, + 110: 47, + 111: 47, + 112: 48, + 113: 48, + 114: 48, + 115: 49, + 116: 49, + 117: 49, + 118: 50, + 119: 50, + 120: 50, + 121: 51, + 122: 51, + 123: 51, + 124: 52, + 125: 52, + 126: 52, + 127: 53, + 128: 53, + 129: 53, + 130: 54, + 131: 54, + 132: 54, + 133: 55, + 134: 55, + 135: 55, + 136: 56, + 137: 56, + 138: 56, + 139: 57, + 140: 57, + 141: 57, + 142: 58, + 143: 58, + 144: 58, + 145: 59, + 146: 59, + 147: 59, + 148: 59, + 149: 59, + 150: 59, + 151: 59, + 152: 59, + 153: 59, + 154: 59, + 155: 59, + 156: 59, + 157: 59, + 158: 59, + 159: 60, + 160: 60, + 161: 60, + 162: 60, + 163: 60, + 164: 60, + 165: 60, + 166: 60, + 167: 60, + 168: 60, + 169: 60, + 170: 60, + 171: 60, + 172: 60, + 173: 61, + 174: 61, + 175: 61, + 176: 61, + 177: 61, + 178: 61, + 179: 61, + 180: 61, + 181: 61, + 182: 61, + 183: 61, + 184: 61, + 185: 61, + 186: 61, + 187: 62, + 188: 62, + 189: 62, + 190: 62, + 191: 62, + 192: 62, + 193: 62, + 194: 62, + 195: 62, + 196: 62, + 197: 62, + 198: 62, + 199: 62, + 200: 62, + 201: 63, + 202: 63, + 203: 63, + 204: 63, + 205: 63, + 206: 63, + 207: 63, + 208: 63, + 209: 63, + 210: 63, + 211: 63, + 212: 63, + 213: 63, + 214: 63, + 215: 64, + 216: 64, + 217: 64, + 218: 64, + 219: 64, + 220: 64, + 221: 64, + 222: 64, + 223: 64, + 224: 64, + 225: 64, + 226: 64, + 227: 64, + 228: 64, + 229: 65, + 230: 66, + 231: 67, + 232: 68, + 233: 69, + 234: 70, + 235: 70, + 236: 70, + 237: 70, + 238: 70, + 239: 70, + 240: 70, + 241: 70, + 242: 70, + 243: 70, + 244: 70, + 245: 70, + 246: 71, + 247: 72, + 248: 73, + 249: 74, + 250: 74, + 251: 74, + 252: 74, + 253: 74, + 254: 74, + 255: 74, + 256: 74, + 257: 74, + 258: 74, + 259: 74, + 260: 74, + 261: 74, + 262: 74, + 263: 74, + 264: 74, + 265: 74, + 266: 74, + 267: 74, + 268: 74, + 269: 74, + 270: 74, + 271: 74, + 272: 74, + 273: 74, + 274: 74, + 275: 74, + 276: 74, + 277: 74, + 278: 74, + 279: 74, + 280: 74, + 281: 74, + 282: 74, + 283: 74, + 284: 74, + 285: 74, + 286: 74, + 287: 74, + 288: 74, + 289: 74, + 290: 74, + 291: 74, + 292: 74, + 293: 74, + 294: 74, + 295: 74, + 296: 74, + 297: 74, + 298: 74, + 299: 74, + 300: 74, + 301: 74, + 302: 74, + 303: 74, + 304: 74, + 305: 74, + 306: 74, + 307: 74, + 308: 74, + 309: 74, + 310: 74, + 311: 74, + 312: 74, + 313: 74, + 314: 74, + 315: 74, + 316: 74, + 317: 74, + 318: 74, + 319: 74, + 320: 74, + 321: 74, + 322: 74, + 323: 74, + 324: 74, + 325: 74, + 326: 74, + 327: 74, + 328: 74, + 329: 74, + 330: 74, + 331: 74, + 332: 74, + 333: 74, + 334: 74, + 335: 74, + 336: 74, + 337: 74, + 338: 74, + 339: 74, + 340: 74, + 341: 74, + 342: 74, + 343: 74, + 344: 74, + 345: 74, + 346: 74, + 347: 74, + 348: 74, + 349: 74, + 350: 74, + 351: 74, + 352: 74, + 353: 74, + 354: 74, + 355: 74, + 356: 74, + 357: 74, + 358: 74, + 359: 74, + 360: 74, + 361: 74, + 362: 74, + 363: 74, + 364: 74, + 365: 74, + 366: 74, + 367: 74, + 368: 74, + 369: 74, + 370: 74, + 371: 74, + 372: 74, + 373: 74, + 374: 74, + 375: 74, + 376: 74, + 377: 74, + 378: 74, + 379: 74, + 380: 74, + 381: 74, + 382: 74, + 383: 74, + 384: 74, + 385: 74, + 386: 74, + 387: 74, + 388: 74, + 389: 74, + 390: 74, + 391: 74, + 392: 74, + 393: 74, + 394: 74, + 395: 74, + 396: 74, + 397: 74, + 398: 74, + 399: 74, + 400: 74, + 401: 74, + 402: 74, + 403: 74, + 404: 74, + 405: 74, + 406: 74, + 407: 74, + 408: 74, + 409: 74, + 410: 74, + 411: 74, + 412: 74, + 413: 74, + 414: 74, + 415: 74, + 416: 74, + 417: 74, + 418: 74, + 419: 74, + 420: 74, + 421: 74, + 422: 74, + 423: 74, + 424: 74, + 425: 74, + 426: 74, + 427: 74, + 428: 74, + 429: 74, + 430: 74, + 431: 74, + 432: 74, + 433: 74, + 434: 74, + 435: 74, + 436: 74, + 437: 74, + 438: 74, + 439: 74, + 440: 74, + 441: 74, + 442: 74, + 443: 74, + 444: 74, + 445: 74, + 446: 74, + 447: 74, + 448: 74, + 449: 74, + 450: 74, + 451: 74, + 452: 74, + 453: 74, + 454: 74, + 455: 74, + 456: 74, + 457: 74, + 458: 74, + 459: 74, + 460: 74, + 461: 74, + 462: 74, + 463: 74, + 464: 74, + 465: 74, + 466: 74, + 467: 74, + 468: 74, + 469: 74, + 470: 74, + 471: 74, + 472: 74, + 473: 74, + 474: 74, + 475: 74, + 476: 74, + 477: 74, + 478: 74, + 479: 74, + 480: 74, + 481: 74, + 482: 74, + 483: 74, + 484: 74, + 485: 74, + 486: 74, + 487: 74, + 488: 74, + 489: 74, + 490: 74, + 491: 74, + 492: 74, + 493: 74, + 494: 74, + 495: 74, + 496: 74, + 497: 74, + 498: 74, + 499: 74, + 500: 74, + 501: 74, + 502: 74, + 503: 74, + 504: 74, + 505: 74, + 506: 74, + 507: 74, + 508: 74, + 509: 74, + 510: 74, + 511: 74, + 512: 74, + 513: 74, + 514: 74, + 515: 74, + 516: 74, + 517: 74, + 518: 74, + 519: 74, + 520: 74, + 521: 74, + 522: 74, + 523: 74, + 524: 74, + 525: 74, + 526: 74, + 527: 74, + 528: 74, + 529: 74, + 530: 74, + 531: 74, + 532: 74, + 533: 74, + 534: 74, + 535: 74, + 536: 74, + 537: 74, + 538: 74, + 539: 74, + 540: 74, + 541: 74, + 542: 74, + 543: 74, + 544: 74, + 545: 74, + 546: 74, + 547: 74, + 548: 74, + 549: 74, + 550: 74, + 551: 74, + 552: 74, + 553: 74, + 554: 74, + 555: 74, + 556: 74, + 557: 74, + 558: 74, + 559: 74, + 560: 74, + 561: 74, + 562: 74, + 563: 74, + 564: 74, + 565: 74, + 566: 74, + 567: 74, + 568: 74, + 569: 74, + 570: 74, + 571: 74, + 572: 74, + 573: 74, + 574: 74, + 575: 74, + 576: 74, + 577: 74, + 578: 74, + 579: 74, + 580: 74, + 581: 74, + 582: 74, + 583: 74, + 584: 74, + 585: 74, + 586: 74, + 587: 74, + 588: 74, + 589: 74, + 590: 74, + 591: 74, + 592: 74, + 593: 74, + 594: 74, + 595: 74, + 596: 74, + 597: 74, + 598: 74, + 599: 74, + 600: 74, + 601: 74, + 602: 74, + 603: 74, + 604: 74, + 605: 74, + 606: 74, + 607: 74, + 608: 74, + 609: 74, + 610: 74, + 611: 74, + 612: 74, + 613: 74, + 614: 74, + 615: 74, + 616: 74, + 617: 74, + 618: 74, + 619: 74, + 620: 74, + 621: 74, + 622: 74, + 623: 74, + 624: 74, + 625: 74, + 626: 74, + 627: 74, + 628: 74, + 629: 74, + 630: 74, + 631: 74, + 632: 74, + 633: 74, + 634: 74, + 635: 74, + 636: 74, + 637: 74, + 638: 74, + 639: 74, + 640: 74, + 641: 74, + 642: 74, + 643: 74, + 644: 74, + 645: 74, + 646: 74, + 647: 74, + 648: 74, + 649: 74, + 650: 74, + 651: 74, + 652: 74, + 653: 74, + 654: 74, + 655: 74, + 656: 74, + 657: 74, + 658: 74, + 659: 74, + 660: 74, + 661: 74, + 662: 74, + 663: 74, + 664: 74, + 665: 74, + 666: 74, + 667: 74, + 668: 74, + 669: 74, + 670: 74, + 671: 74, + 672: 74, + 673: 74, + 674: 74, + 675: 74, + 676: 74, + 677: 74, + 678: 74, + 679: 74, + 680: 74, + 681: 74, + 682: 74, + 683: 74, + 684: 74, + 685: 74, + 686: 74, + 687: 74, + 688: 74, + 689: 74, + 690: 74, + 691: 74, + 692: 74, + 693: 74, + 694: 74, + 695: 74, + 696: 74, + 697: 74, + 698: 74, + 699: 74, + 700: 74, + 701: 74, + 702: 74, + 703: 74, + 704: 74, + 705: 74, + 706: 74, + 707: 74, + 708: 74, + 709: 74, + 710: 74, + 711: 74, + 712: 74, + 713: 74, + 714: 74, + 715: 74, + 716: 74, + 717: 74, + 718: 74, + 719: 74, + 720: 74, + 721: 74, + 722: 74, + 723: 74, + 724: 74, + 725: 74, + 726: 74, + 727: 74, + 728: 74, + 729: 74, + 730: 74, + 731: 74, + 732: 74, + 733: 74, + 734: 74, + 735: 74, + 736: 74, + 737: 74, + 738: 74, + 739: 74, + 740: 74, + 741: 74, + 742: 74, + 743: 74, + 744: 74, + 745: 74, + 746: 74, + 747: 74, + 748: 74, + 749: 74, + 750: 74, + 751: 74, + 752: 74, + 753: 74, + 754: 74, + 755: 74, + 756: 74, + 757: 74, + 758: 74, + 759: 74, + 760: 74, + 761: 74, + 762: 74, + 763: 74, + 764: 74, + 765: 74, + 766: 74, + 767: 74, + 768: 74, + 769: 74, + 770: 74, + 771: 74, + 772: 74, + 773: 74, + 774: 74, + 775: 74, + 776: 74, + 777: 74, + 778: 74, + 779: 74, + 780: 74, + 781: 74, + 782: 74, + 783: 74, + 784: 74, + 785: 74, + 786: 74, + 787: 74, + 788: 74, + 789: 74, + 790: 74, + 791: 74, + 792: 74, + 793: 74, + 794: 74, + 795: 74, + 796: 74, + 797: 74, + 798: 74, + 799: 74, + 800: 74, + 801: 74, + 802: 74, + 803: 74, + 804: 74, + 805: 74, + 806: 74, + 807: 74, + 808: 74, + 809: 74, + 810: 74, + 811: 74, + 812: 74, + 813: 74, + 814: 74, + 815: 74, + 816: 74, + 817: 74, + 818: 74, + 819: 74, + 820: 74, + 821: 74, + 822: 74, + 823: 74, + 824: 74, + 825: 74, + 826: 74, + 827: 74, + 828: 74, + 829: 74, + 830: 74, + 831: 74, + 832: 74, + 833: 74, + 834: 74, + 835: 74, + 836: 74, + 837: 74, + 838: 74, + 839: 74, + 840: 74, + 841: 74, + 842: 74, + 843: 74, + 844: 74, + 845: 74, + 846: 74, + 847: 74, + 848: 74, + 849: 74, + 850: 74, + 851: 74, + 852: 74, + 853: 74, + 854: 74, + 855: 74, + 856: 74, + 857: 74, + 858: 74, + 859: 74, + 860: 74, + 861: 74, + 862: 74, + 863: 74, + 864: 74, + 865: 74, + 866: 74, + 867: 74, + 868: 74, + 869: 74, + 870: 74, + 871: 74, + 872: 74, + 873: 74, + 874: 74, + 875: 74, + 876: 74, + 877: 74, + 878: 74, + 879: 74, + 880: 74, + 881: 74, + 882: 74, + 883: 74, + 884: 74, + 885: 74, + 886: 74, + 887: 74, + 888: 74, + 889: 74, + 890: 74, + 891: 74, + 892: 74, + 893: 74, + 894: 74, + 895: 74, + 896: 74, + 897: 74, + 898: 74, + 899: 74, + 900: 74, + 901: 74, + 902: 74, + 903: 74, + 904: 74, + 905: 74, + 906: 74, + 907: 74, + 908: 74, + 909: 74, + 910: 74, + 911: 74, + 912: 74, + 913: 74, + 914: 74, + 915: 74, + 916: 74, + 917: 74, + 918: 74, + 919: 74, + 920: 74, + 921: 74, + 922: 74, + 923: 74, + 924: 74, + 925: 74, + 926: 74, + 927: 74, + 928: 74, + 929: 74, + 930: 74, + 931: 74, + 932: 74, + 933: 74, + 934: 74, + 935: 74, + 936: 74, + 937: 74, + 938: 74, + 939: 74, + 940: 74, + 941: 74, + 942: 74, + 943: 74, + 944: 74, + 945: 74, + 946: 74, + 947: 74, + 948: 74, + 949: 74, + 950: 74, + 951: 74, + 952: 74, + 953: 74, + 954: 74, + 955: 74, + 956: 74, + 957: 74, + 958: 74, + 959: 74, + 960: 74, + 961: 74, + 962: 74, + 963: 74, + 964: 74, + 965: 74, + 966: 74, + 967: 74, + 968: 74, + 969: 74, + 970: 74, + 971: 74, + 972: 74, + 973: 74, + 974: 74, + 975: 74, + 976: 74, + 977: 74, + 978: 74, + 979: 74, + 980: 74, + 981: 74, + 982: 74, + 983: 74, + 984: 74, + 985: 74, + 986: 74, + 987: 74, + 988: 74, + 989: 74, + 990: 74, + 991: 74, + 992: 74, + 993: 74, + 994: 74, + 995: 74, + 996: 74, + 997: 74, + 998: 74, + 999: 74, + 1000: 74, + 1001: 74, + 1002: 74, + 1003: 74, + 1004: 74, + 1005: 74, + 1006: 74, + 1007: 74, + 1008: 74, + 1009: 74, + 1010: 74, + 1011: 74, + 1012: 74, + 1013: 74, + 1014: 74, + 1015: 74, + 1016: 74, + 1017: 74, + 1018: 74, + 1019: 74, + 1020: 74, + 1021: 74, + 1022: 74, + 1023: 74, + 1024: 74, + 1025: 74, + 1026: 74, + 1027: 74, + 1028: 74, + 1029: 74, + 1030: 74, + 1031: 74, + 1032: 74, + 1033: 74, + 1034: 74, + 1035: 74, + 1036: 74, + 1037: 74, + 1038: 74, + 1039: 74, + 1040: 74, + 1041: 74, + 1042: 74, + 1043: 74, + 1044: 74, + 1045: 74, + 1046: 74, + 1047: 74, + 1048: 74, + 1049: 75, + 1050: 75, + 1051: 75, + 1052: 75, + 1053: 75, + 1054: 75, + 1055: 75, + 1056: 75, + 1057: 75, + 1058: 75, + 1059: 75, + 1060: 75, + 1061: 75, + 1062: 75, + 1063: 75, + 1064: 75, + 1065: 76, + 1066: 76, + 1067: 76, + 1068: 76, + 1069: 76, + 1070: 76, + 1071: 76, + 1072: 76, + 1073: 76, + 1074: 76, + 1075: 76, + 1076: 76, + 1077: 76, + 1078: 76, + 1079: 76, + 1080: 76, + 1081: 77, + 1082: 77, + 1083: 77, + 1084: 77, + 1085: 77, + 1086: 77, + 1087: 77, + 1088: 77, + 1089: 77, + 1090: 77, + 1091: 77, + 1092: 77, + 1093: 77, + 1094: 77, + 1095: 77, + 1096: 77, + 1097: 78, + 1098: 78, + 1099: 78, + 1100: 78, + 1101: 78, + 1102: 78, + 1103: 78, + 1104: 78, + 1105: 78, + 1106: 78, + 1107: 78, + 1108: 78, + 1109: 78, + 1110: 78, + 1111: 78, + 1112: 78, + 1113: 79, + 1114: 79, + 1115: 79, + 1116: 79, + 1117: 79, + 1118: 79, + 1119: 79, + 1120: 79, + 1121: 79, + 1122: 79, + 1123: 79, + 1124: 79, + 1125: 79, + 1126: 79, + 1127: 79, + 1128: 79, + 1129: 80, + 1130: 80, + 1131: 80, + 1132: 80, + 1133: 80, + 1134: 80, + 1135: 80, + 1136: 80, + 1137: 80, + 1138: 80, + 1139: 80, + 1140: 80, + 1141: 80, + 1142: 80, + 1143: 80, + 1144: 80, + 1145: 81, + 1146: 81, + 1147: 81, + 1148: 81, + 1149: 81, + 1150: 81, + 1151: 81, + 1152: 81, + 1153: 81, + 1154: 81, + 1155: 81, + 1156: 81, + 1157: 81, + 1158: 81, + 1159: 81, + 1160: 81, + 1161: 82, + 1162: 82, + 1163: 82, + 1164: 82, + 1165: 82, + 1166: 82, + 1167: 82, + 1168: 82, + 1169: 82, + 1170: 82, + 1171: 82, + 1172: 82, + 1173: 82, + 1174: 82, + 1175: 82, + 1176: 82, + 1177: 83, + 1178: 83, + 1179: 83, + 1180: 83, + 1181: 83, + 1182: 83, + 1183: 83, + 1184: 83, + 1185: 83, + 1186: 83, + 1187: 83, + 1188: 83, + 1189: 83, + 1190: 83, + 1191: 83, + 1192: 83, + 1193: 84, + 1194: 84, + 1195: 84, + 1196: 84, + 1197: 84, + 1198: 84, + 1199: 84, + 1200: 84, + 1201: 84, + 1202: 84, + 1203: 84, + 1204: 84, + 1205: 84, + 1206: 84, + 1207: 84, + 1208: 84, + 1209: 85, + 1210: 85, + 1211: 85, + 1212: 85, + 1213: 85, + 1214: 85, + 1215: 85, + 1216: 85, + 1217: 85, + 1218: 85, + 1219: 85, + 1220: 85, + 1221: 85, + 1222: 85, + 1223: 85, + 1224: 85, + 1225: 86, + 1226: 86, + 1227: 86, + 1228: 86, + 1229: 86, + 1230: 86, + 1231: 86, + 1232: 86, + 1233: 86, + 1234: 86, + 1235: 86, + 1236: 86, + 1237: 86, + 1238: 86, + 1239: 86, + 1240: 86, + 1241: 87, + 1242: 87, + 1243: 87, + 1244: 87, + 1245: 87, + 1246: 87, + 1247: 87, + 1248: 87, + 1249: 87, + 1250: 87, + 1251: 87, + 1252: 87, + 1253: 87, + 1254: 87, + 1255: 87, + 1256: 87, + 1257: 88, + 1258: 88, + 1259: 88, + 1260: 88, + 1261: 88, + 1262: 88, + 1263: 88, + 1264: 88, + 1265: 88, + 1266: 88, + 1267: 88, + 1268: 88, + 1269: 88, + 1270: 88, + 1271: 88, + 1272: 88, + 1273: 89, + 1274: 89, + 1275: 89, + 1276: 89, + 1277: 89, + 1278: 89, + 1279: 89, + 1280: 89, + 1281: 89, + 1282: 89, + 1283: 89, + 1284: 89, + 1285: 89, + 1286: 89, + 1287: 89, + 1288: 89, + 1289: 90, + 1290: 90, + 1291: 90, + 1292: 90, + 1293: 90, + 1294: 90, + 1295: 90, + 1296: 90, + 1297: 90, + 1298: 90, + 1299: 90, + 1300: 90, + 1301: 90, + 1302: 90, + 1303: 90, + 1304: 90, + 1305: 91, + 1306: 91, + 1307: 91, + 1308: 91, + 1309: 91, + 1310: 91, + 1311: 91, + 1312: 91, + 1313: 91, + 1314: 91, + 1315: 91, + 1316: 91, + 1317: 92, + 1318: 92, + 1319: 92, + 1320: 92, + 1321: 92, + 1322: 92, + 1323: 92, + 1324: 92, + 1325: 92, + 1326: 92, + 1327: 92, + 1328: 92, + 1329: 93, + 1330: 93, + 1331: 93, + 1332: 93, + 1333: 93, + 1334: 93, + 1335: 93, + 1336: 93, + 1337: 93, + 1338: 93, + 1339: 93, + 1340: 93, + 1341: 94, + 1342: 95, + 1343: 96, + 1344: 97, + 1345: 98, + 1346: 99, + 1347: 99, + 1348: 100, + 1349: 100, + 1350: 100, + 1351: 100, + 1352: 100, + 1353: 100, + 1354: 100, + 1355: 100, + 1356: 100, + 1357: 100, + 1358: 100, + 1359: 100, + 1360: 101, + 1361: 101, + 1362: 101, + 1363: 101, + 1364: 101, + 1365: 101, + 1366: 101, + 1367: 101, + 1368: 101, + 1369: 101, + 1370: 101, + 1371: 101, + 1372: 101, + 1373: 101, + 1374: 101, + 1375: 101, + 1376: 101, + 1377: 101, + 1378: 101, + 1379: 101, + 1380: 101, + 1381: 101, + 1382: 101, + 1383: 101, + 1384: 102, + 1385: 103, + 1386: 104, + 1387: 105, + 1388: 106, + 1389: 107, + 1390: 108, + 1391: 109, + 1392: 110, + 1393: 111, + 1394: 112, + 1395: 113, + 1396: 114, + 1397: 115, + 1398: 116, + 1399: 117, + 1400: 118, + 1401: 118, + 1402: 118, + 1403: 118, + 1404: 118, + 1405: 118, + 1406: 118, + 1407: 118, + 1408: 118, + 1409: 118, + 1410: 118, + 1411: 118, + 1412: 119, + 1413: 120, + 1414: 121, + 1415: 122, + 1416: 123, + 1417: 124, + 1418: 125, + 1419: 126, + 1420: 127, + 1421: 128, + 1422: 129, + 1423: 130, + 1424: 131, + 1425: 132, + 1426: 133, + 1427: 134, + 1428: 135, + 1429: 136, + 1430: 137, + 1431: 137, + 1432: 138, + 1433: 139, + 1434: 140, + 1435: 141, + 1436: 142, + 1437: 142, + 1438: 142, + 1439: 142, + 1440: 143, + 1441: 143, + 1442: 143, + 1443: 143, + 1444: 143, + 1445: 143, + 1446: 143, + 1447: 143, + 1448: 143, + 1449: 143, + 1450: 143, + 1451: 143, + 1452: 143, + 1453: 143, + 1454: 143, + 1455: 143, + 1456: 143, + 1457: 143, + 1458: 143, + 1459: 143, + 1460: 143, + 1461: 143, + 1462: 143, + 1463: 143, + 1464: 143, + 1465: 143, + 1466: 143, + 1467: 143, + 1468: 143, + 1469: 143, + 1470: 143, + 1471: 143, + 1472: 143, + 1473: 143, + 1474: 143, + 1475: 143, + 1476: 143, + 1477: 143, + 1478: 143, + 1479: 143, + 1480: 143, + 1481: 143, + 1482: 143, + 1483: 143, + 1484: 143, + 1485: 143, + 1486: 143, + 1487: 143, + 1488: 143, + 1489: 143, + 1490: 143, + 1491: 143, + 1492: 143, + 1493: 143, + 1494: 143, + 1495: 143, + 1496: 143, + 1497: 143, + 1498: 143, + 1499: 143, + 1500: 143, + 1501: 143, + 1502: 143, + 1503: 143, + 1504: 143, + 1505: 143, + 1506: 143, + 1507: 143, + 1508: 143, + 1509: 143, + 1510: 143, + 1511: 143, + 1512: 143, + 1513: 143, + 1514: 143, + 1515: 143, + 1516: 143, + 1517: 143, + 1518: 143, + 1519: 143, + 1520: 143, + 1521: 143, + 1522: 143, + 1523: 143, + 1524: 143, + 1525: 143, + 1526: 143, + 1527: 143, + 1528: 143, + 1529: 143, + 1530: 143, + 1531: 143, + 1532: 143, + 1533: 143, + 1534: 143, + 1535: 143, + 1536: 143, + 1537: 143, + 1538: 143, + 1539: 143, + 1540: 143, + 1541: 143, + 1542: 143, + 1543: 143, + 1544: 143, + 1545: 143, + 1546: 143, + 1547: 143, + 1548: 143, + 1549: 143, + 1550: 143, + 1551: 143, + 1552: 143, + 1553: 143, + 1554: 143, + 1555: 143, + 1556: 143, + 1557: 143, + 1558: 143, + 1559: 143, + 1560: 143, + 1561: 143, + 1562: 143, + 1563: 143, + 1564: 143, + 1565: 143, + 1566: 143, + 1567: 143, + 1568: 143, + 1569: 143, + 1570: 143, + 1571: 143, + 1572: 143, + 1573: 143, + 1574: 143, + 1575: 143, + 1576: 143, + 1577: 143, + 1578: 143, + 1579: 143, + 1580: 143, + 1581: 143, + 1582: 143, + 1583: 143, + 1584: 143, + 1585: 143, + 1586: 143, + 1587: 143, + 1588: 143, + 1589: 143, + 1590: 143, + 1591: 143, + 1592: 143, + 1593: 143, + 1594: 143, + 1595: 143, + 1596: 143, + 1597: 143, + 1598: 143, + 1599: 143, + 1600: 143, + 1601: 143, + 1602: 143, + 1603: 143, + 1604: 143, + 1605: 143, + 1606: 143, + 1607: 143, + 1608: 143, + 1609: 143, + 1610: 143, + 1611: 143, + 1612: 143, + 1613: 143, + 1614: 143, + 1615: 143, + 1616: 143, + 1617: 143, + 1618: 143, + 1619: 143, + 1620: 143, + 1621: 143, + 1622: 143, + 1623: 143, + 1624: 143, + 1625: 143, + 1626: 143, + 1627: 143, + 1628: 143, + 1629: 143, + 1630: 143, + 1631: 143, + 1632: 143, + 1633: 143, + 1634: 143, + 1635: 143, + 1636: 143, + 1637: 143, + 1638: 143, + 1639: 143, + 1640: 143, + 1641: 143, + 1642: 143, + 1643: 143, + 1644: 143, + 1645: 143, + 1646: 143, + 1647: 143, + 1648: 143, + 1649: 143, + 1650: 143, + 1651: 143, + 1652: 143, + 1653: 143, + 1654: 143, + 1655: 143, + 1656: 143, + 1657: 143, + 1658: 143, + 1659: 143, + 1660: 143, + 1661: 143, + 1662: 143, + 1663: 143, + 1664: 143, + 1665: 143, + 1666: 143, + 1667: 143, + 1668: 143, + 1669: 143, + 1670: 143, + 1671: 143, + 1672: 143, + 1673: 143, + 1674: 143, + 1675: 143, + 1676: 143, + 1677: 143, + 1678: 143, + 1679: 143, + 1680: 143, + 1681: 143, + 1682: 143, + 1683: 143, + 1684: 143, + 1685: 143, + 1686: 143, + 1687: 143, + 1688: 143, + 1689: 143, + 1690: 143, + 1691: 143, + 1692: 143, + 1693: 143, + 1694: 143, + 1695: 143, + 1696: 143, + 1697: 143, + 1698: 143, + 1699: 143, + 1700: 143, + 1701: 143, + 1702: 143, + 1703: 143, + 1704: 143, + 1705: 143, + 1706: 143, + 1707: 143, + 1708: 143, + 1709: 143, + 1710: 143, + 1711: 143, + 1712: 143, + 1713: 143, + 1714: 143, + 1715: 143, + 1716: 143, + 1717: 143, + 1718: 143, + 1719: 143, + 1720: 143, + 1721: 143, + 1722: 143, + 1723: 143, + 1724: 143, + 1725: 143, + 1726: 143, + 1727: 143, + 1728: 143, + 1729: 143, + 1730: 143, + 1731: 143, + 1732: 143, + 1733: 143, + 1734: 143, + 1735: 143, + 1736: 143, + 1737: 143, + 1738: 143, + 1739: 143, + 1740: 143, + 1741: 143, + 1742: 143, + 1743: 143, + 1744: 143, + 1745: 143, + 1746: 143, + 1747: 143, + 1748: 143, + 1749: 143, + 1750: 143, + 1751: 143, + 1752: 143, + 1753: 143, + 1754: 143, + 1755: 143, + 1756: 143, + 1757: 143, + 1758: 143, + 1759: 143, + 1760: 143, + 1761: 143, + 1762: 143, + 1763: 143, + 1764: 143, + 1765: 143, + 1766: 143, + 1767: 143, + 1768: 143, + 1769: 143, + 1770: 143, + 1771: 143, + 1772: 143, + 1773: 143, + 1774: 143, + 1775: 143, + 1776: 143, + 1777: 143, + 1778: 143, + 1779: 143, + 1780: 143, + 1781: 143, + 1782: 143, + 1783: 143, + 1784: 143, + 1785: 143, + 1786: 143, + 1787: 143, + 1788: 143, + 1789: 143, + 1790: 143, + 1791: 143, + 1792: 143, + 1793: 143, + 1794: 143, + 1795: 143, + 1796: 143, + 1797: 143, + 1798: 143, + 1799: 143, + 1800: 143, + 1801: 143, + 1802: 143, + 1803: 143, + 1804: 143, + 1805: 143, + 1806: 143, + 1807: 143, + 1808: 143, + 1809: 143, + 1810: 143, + 1811: 143, + 1812: 143, + 1813: 143, + 1814: 143, + 1815: 143, + 1816: 143, + 1817: 143, + 1818: 143, + 1819: 143, + 1820: 143, + 1821: 143, + 1822: 143, + 1823: 143, + 1824: 143, + 1825: 143, + 1826: 143, + 1827: 143, + 1828: 143, + 1829: 143, + 1830: 143, + 1831: 143, + 1832: 143, + 1833: 143, + 1834: 143, + 1835: 143, + 1836: 143, + 1837: 143, + 1838: 143, + 1839: 143, + 1840: 143, + 1841: 143, + 1842: 143, + 1843: 143, + 1844: 143, + 1845: 143, + 1846: 143, + 1847: 143, + 1848: 143, + 1849: 143, + 1850: 143, + 1851: 143, + 1852: 143, + 1853: 143, + 1854: 143, + 1855: 143, + 1856: 143, + 1857: 143, + 1858: 143, + 1859: 143, + 1860: 143, + 1861: 143, + 1862: 143, + 1863: 143, + 1864: 143, + 1865: 143, + 1866: 143, + 1867: 143, + 1868: 143, + 1869: 143, + 1870: 143, + 1871: 143, + 1872: 143, + 1873: 143, + 1874: 143, + 1875: 143, + 1876: 143, + 1877: 143, + 1878: 143, + 1879: 143, + 1880: 143, + 1881: 143, + 1882: 143, + 1883: 143, + 1884: 143, + 1885: 143, + 1886: 143, + 1887: 143, + 1888: 143, + 1889: 143, + 1890: 143, + 1891: 143, + 1892: 143, + 1893: 143, + 1894: 143, + 1895: 143, + 1896: 143, + 1897: 143, + 1898: 143, + 1899: 143, + 1900: 143, + 1901: 143, + 1902: 143, + 1903: 143, + 1904: 143, + 1905: 143, + 1906: 143, + 1907: 143, + 1908: 143, + 1909: 143, + 1910: 143, + 1911: 143, + 1912: 143, + 1913: 143, + 1914: 143, + 1915: 143, + 1916: 143, + 1917: 143, + 1918: 143, + 1919: 143, + 1920: 143, + 1921: 143, + 1922: 143, + 1923: 143, + 1924: 143, + 1925: 143, + 1926: 143, + 1927: 143, + 1928: 143, + 1929: 143, + 1930: 143, + 1931: 143, + 1932: 143, + 1933: 143, + 1934: 143, + 1935: 143, + 1936: 143, + 1937: 143, + 1938: 143, + 1939: 143, + 1940: 143, + 1941: 143, + 1942: 143, + 1943: 143, + 1944: 143, + 1945: 143, + 1946: 143, + 1947: 143, + 1948: 143, + 1949: 143, + 1950: 143, + 1951: 143, + 1952: 144, + 1953: 145, + 1954: 146, + 1955: 146, + 1956: 146, + 1957: 146, + 1958: 146, + 1959: 146, + 1960: 146, + 1961: 146, + 1962: 146, + 1963: 146, + 1964: 146, + 1965: 146, + 1966: 146, + 1967: 146, + 1968: 146, + 1969: 146, + 1970: 146, + 1971: 146, + 1972: 146, + 1973: 146, + 1974: 146, + 1975: 146, + 1976: 146, + 1977: 146, + 1978: 146, + 1979: 146, + 1980: 146, + 1981: 146, + 1982: 146, + 1983: 146, + 1984: 146, + 1985: 146, + 1986: 146, + 1987: 146, + 1988: 146, + 1989: 146, + 1990: 146, + 1991: 146, + 1992: 146, + 1993: 146, + 1994: 146, + 1995: 146, + 1996: 146, + 1997: 146, + 1998: 146, + 1999: 146, + 2000: 146, + 2001: 146, + 2002: 146, + 2003: 146, + 2004: 146, + 2005: 146, + 2006: 146, + 2007: 146, + 2008: 146, + 2009: 146, + 2010: 146, + 2011: 146, + 2012: 146, + 2013: 146, + 2014: 146, + 2015: 146, + 2016: 146, + 2017: 146, + 2018: 146, + 2019: 146, + 2020: 146, + 2021: 146, + 2022: 146, + 2023: 146, + 2024: 146, + 2025: 146, + 2026: 146, + 2027: 146, + 2028: 146, + 2029: 146, + 2030: 146, + 2031: 146, + 2032: 146, + 2033: 146, + 2034: 147, + 2035: 147, + 2036: 147, + 2037: 147, + 2038: 147, + 2039: 147, + 2040: 147, + 2041: 147, + 2042: 147, + 2043: 147, + 2044: 147, + 2045: 147, + 2046: 147, + 2047: 147, + 2048: 147, + 2049: 147, + 2050: 147, + 2051: 147, + 2052: 147, + 2053: 147, + 2054: 147, + 2055: 147, + 2056: 147, + 2057: 147, + 2058: 148, + 2059: 148, + 2060: 148, + 2061: 148, + 2062: 148, + 2063: 148, + 2064: 148, + 2065: 148, + 2066: 148, + 2067: 148, + 2068: 148, + 2069: 148, + 2070: 148, + 2071: 148, + 2072: 148, + 2073: 148, + 2074: 148, + 2075: 148, + 2076: 148, + 2077: 148, + 2078: 148, + 2079: 148, + 2080: 148, + 2081: 148, + 2082: 148, + 2083: 148, + 2084: 148, + 2085: 148, + 2086: 148, + 2087: 148, + 2088: 148, + 2089: 148, + 2090: 148, + 2091: 148, + 2092: 148, + 2093: 148, + 2094: 148, + 2095: 148, + 2096: 148, + 2097: 148, + 2098: 148, + 2099: 148, + 2100: 148, + 2101: 148, + 2102: 148, + 2103: 148, + 2104: 148, + 2105: 148, + 2106: 148, + 2107: 148, + 2108: 148, + 2109: 148, + 2110: 148, + 2111: 148, + 2112: 148, + 2113: 148, + 2114: 148, + 2115: 148, + 2116: 148, + 2117: 148, + 2118: 148, + 2119: 148, + 2120: 148, + 2121: 148, + 2122: 148, + 2123: 148, + 2124: 148, + 2125: 148, + 2126: 148, + 2127: 148, + 2128: 148, + 2129: 148, + 2130: 148, + 2131: 148, + 2132: 148, + 2133: 148, + 2134: 148, + 2135: 148, + 2136: 148, + 2137: 148, + 2138: 148, + 2139: 148, + 2140: 148, + 2141: 148, + 2142: 148, + 2143: 148, + 2144: 148, + 2145: 148, + 2146: 148, + 2147: 148, + 2148: 148, + 2149: 148, + 2150: 148, + 2151: 148, + 2152: 148, + 2153: 148, + 2154: 148, + 2155: 148, + 2156: 148, + 2157: 148, + 2158: 148, + 2159: 148, + 2160: 148, + 2161: 148, + 2162: 148, + 2163: 148, + 2164: 148, + 2165: 148, + 2166: 148, + 2167: 148, + 2168: 148, + 2169: 148, + 2170: 148, + 2171: 148, + 2172: 148, + 2173: 148, + 2174: 148, + 2175: 148, + 2176: 148, + 2177: 148, + 2178: 148, + 2179: 148, + 2180: 148, + 2181: 148, + 2182: 148, + 2183: 148, + 2184: 148, + 2185: 148, + 2186: 148, + 2187: 148, + 2188: 148, + 2189: 148, + 2190: 148, + 2191: 148, + 2192: 148, + 2193: 148, + 2194: 148, + 2195: 148, + 2196: 148, + 2197: 148, + 2198: 148, + 2199: 148, + 2200: 148, + 2201: 148, + 2202: 148, + 2203: 148, + 2204: 148, + 2205: 148, + 2206: 148, + 2207: 148, + 2208: 148, + 2209: 148, + 2210: 148, + 2211: 148, + 2212: 148, + 2213: 148, + 2214: 148, + 2215: 148, + 2216: 148, + 2217: 148, + 2218: 148, + 2219: 148, + 2220: 148, + 2221: 148, + 2222: 148, + 2223: 148, + 2224: 148, + 2225: 148, + 2226: 148, + 2227: 148, + 2228: 148, + 2229: 148, + 2230: 148, + 2231: 148, + 2232: 148, + 2233: 148, + 2234: 148, + 2235: 148, + 2236: 148, + 2237: 148, + 2238: 148, + 2239: 148, + 2240: 148, + 2241: 148, + 2242: 148, + 2243: 148, + 2244: 148, + 2245: 148, + 2246: 148, + 2247: 148, + 2248: 148, + 2249: 148, + 2250: 148, + 2251: 148, + 2252: 148, + 2253: 148, + 2254: 148, + 2255: 148, + 2256: 148, + 2257: 148, + 2258: 148, + 2259: 148, + 2260: 148, + 2261: 148, + 2262: 148, + 2263: 148, + 2264: 148, + 2265: 148, + 2266: 148, + 2267: 148, + 2268: 148, + 2269: 148, + 2270: 148, + 2271: 148, + 2272: 148, + 2273: 148, + 2274: 148, + 2275: 148, + 2276: 148, + 2277: 148, + 2278: 148, + 2279: 148, + 2280: 148, + 2281: 148, + 2282: 148, + 2283: 148, + 2284: 148, + 2285: 148, + 2286: 148, + 2287: 148, + 2288: 148, + 2289: 148, + 2290: 148, + 2291: 148, + 2292: 148, + 2293: 148, + 2294: 148, + 2295: 148, + 2296: 148, + 2297: 148, + 2298: 148, + 2299: 148, + 2300: 148, + 2301: 148, + 2302: 148, + 2303: 148, + 2304: 148, + 2305: 148, + 2306: 148, + 2307: 148, + 2308: 148, + 2309: 148, + 2310: 148, + 2311: 148, + 2312: 148, + 2313: 148, + 2314: 148, + 2315: 148, + 2316: 148, + 2317: 148, + 2318: 148, + 2319: 148, + 2320: 148, + 2321: 148, + 2322: 148, + 2323: 148, + 2324: 148, + 2325: 148, + 2326: 148, + 2327: 148, + 2328: 148, + 2329: 148, + 2330: 148, + 2331: 148, + 2332: 148, + 2333: 148, + 2334: 148, + 2335: 148, + 2336: 148, + 2337: 148, + 2338: 148, + 2339: 148, + 2340: 148, + 2341: 148, + 2342: 148, + 2343: 148, + 2344: 148, + 2345: 148, + 2346: 148, + 2347: 148, + 2348: 148, + 2349: 148, + 2350: 148, + 2351: 148, + 2352: 148, + 2353: 148, + 2354: 148, + 2355: 148, + 2356: 148, + 2357: 148, + 2358: 148, + 2359: 148, + 2360: 148, + 2361: 148, + 2362: 148, + 2363: 148, + 2364: 148, + 2365: 148, + 2366: 148, + 2367: 148, + 2368: 148, + 2369: 148, + 2370: 148, + 2371: 148, + 2372: 148, + 2373: 148, + 2374: 148, + 2375: 148, + 2376: 148, + 2377: 148, + 2378: 148, + 2379: 148, + 2380: 148, + 2381: 148, + 2382: 148, + 2383: 148, + 2384: 148, + 2385: 148, + 2386: 148, + 2387: 148, + 2388: 148, + 2389: 148, + 2390: 148, + 2391: 148, + 2392: 148, + 2393: 148, + 2394: 148, + 2395: 148, + 2396: 148, + 2397: 148, + 2398: 148, + 2399: 148, + 2400: 148, + 2401: 148, + 2402: 148, + 2403: 148, + 2404: 148, + 2405: 148, + 2406: 148, + 2407: 148, + 2408: 148, + 2409: 148, + 2410: 148, + 2411: 148, + 2412: 148, + 2413: 148, + 2414: 148, + 2415: 148, + 2416: 148, + 2417: 148, + 2418: 148, + 2419: 148, + 2420: 148, + 2421: 148, + 2422: 148, + 2423: 148, + 2424: 148, + 2425: 148, + 2426: 148, + 2427: 148, + 2428: 148, + 2429: 148, + 2430: 148, + 2431: 148, + 2432: 148, + 2433: 148, + 2434: 148, + 2435: 148, + 2436: 148, + 2437: 148, + 2438: 148, + 2439: 148, + 2440: 148, + 2441: 148, + 2442: 148, + 2443: 148, + 2444: 148, + 2445: 148, + 2446: 148, + 2447: 148, + 2448: 148, + 2449: 148, + 2450: 148, + 2451: 148, + 2452: 148, + 2453: 148, + 2454: 148, + 2455: 148, + 2456: 148, + 2457: 148, + 2458: 148, + 2459: 148, + 2460: 148, + 2461: 148, + 2462: 148, + 2463: 148, + 2464: 148, + 2465: 148, + 2466: 148, + 2467: 148, + 2468: 148, + 2469: 148, + 2470: 148, + 2471: 148, + 2472: 148, + 2473: 148, + 2474: 148, + 2475: 148, + 2476: 148, + 2477: 148, + 2478: 148, + 2479: 148, + 2480: 148, + 2481: 148, + 2482: 148, + 2483: 148, + 2484: 148, + 2485: 148, + 2486: 148, + 2487: 148, + 2488: 148, + 2489: 148, + 2490: 148, + 2491: 148, + 2492: 148, + 2493: 148, + 2494: 148, + 2495: 148, + 2496: 148, + 2497: 148, + 2498: 148, + 2499: 148, + 2500: 148, + 2501: 148, + 2502: 148, + 2503: 148, + 2504: 148, + 2505: 148, + 2506: 148, + 2507: 148, + 2508: 148, + 2509: 148, + 2510: 148, + 2511: 148, + 2512: 148, + 2513: 148, + 2514: 148, + 2515: 148, + 2516: 148, + 2517: 148, + 2518: 148, + 2519: 148, + 2520: 148, + 2521: 148, + 2522: 148, + 2523: 148, + 2524: 148, + 2525: 148, + 2526: 148, + 2527: 148, + 2528: 148, + 2529: 148, + 2530: 148, + 2531: 148, + 2532: 148, + 2533: 148, + 2534: 148, + 2535: 148, + 2536: 148, + 2537: 148, + 2538: 148, + 2539: 148, + 2540: 148, + 2541: 148, + 2542: 148, + 2543: 148, + 2544: 148, + 2545: 148, + 2546: 148, + 2547: 148, + 2548: 148, + 2549: 148, + 2550: 148, + 2551: 148, + 2552: 148, + 2553: 148, + 2554: 148, + 2555: 148, + 2556: 148, + 2557: 148, + 2558: 148, + 2559: 148, + 2560: 148, + 2561: 148, + 2562: 148, + 2563: 148, + 2564: 148, + 2565: 148, + 2566: 148, + 2567: 148, + 2568: 148, + 2569: 148, + 2570: 148, + 2571: 148, + 2572: 148, + 2573: 148, + 2574: 148, + 2575: 148, + 2576: 148, + 2577: 148, + 2578: 148, + 2579: 148, + 2580: 148, + 2581: 148, + 2582: 148, + 2583: 148, + 2584: 148, + 2585: 148, + 2586: 148, + 2587: 148, + 2588: 148, + 2589: 148, + 2590: 148, + 2591: 148, + 2592: 148, + 2593: 148, + 2594: 148, + 2595: 148, + 2596: 148, + 2597: 148, + 2598: 148, + 2599: 148, + 2600: 148, + 2601: 148, + 2602: 148, + 2603: 148, + 2604: 148, + 2605: 148, + 2606: 148, + 2607: 148, + 2608: 148, + 2609: 148, + 2610: 148, + 2611: 148, + 2612: 148, + 2613: 148, + 2614: 148, + 2615: 148, + 2616: 148, + 2617: 148, + 2618: 148, + 2619: 148, + 2620: 148, + 2621: 148, + 2622: 148, + 2623: 148, + 2624: 148, + 2625: 148, + 2626: 148, + 2627: 148, + 2628: 148, + 2629: 148, + 2630: 148, + 2631: 148, + 2632: 148, + 2633: 148, + 2634: 148, + 2635: 148, + 2636: 148, + 2637: 148, + 2638: 148, + 2639: 148, + 2640: 148, + 2641: 148, + 2642: 148, + 2643: 148, + 2644: 148, + 2645: 148, + 2646: 148, + 2647: 148, + 2648: 148, + 2649: 148, + 2650: 148, + 2651: 148, + 2652: 148, + 2653: 148, + 2654: 148, + 2655: 148, + 2656: 148, + 2657: 148, + 2658: 148, + 2659: 148, + 2660: 148, + 2661: 148, + 2662: 148, + 2663: 148, + 2664: 148, + 2665: 148, + 2666: 148, + 2667: 148, + 2668: 148, + 2669: 148, + 2670: 148, + 2671: 148, + 2672: 148, + 2673: 148, + 2674: 148, + 2675: 148, + 2676: 148, + 2677: 148, + 2678: 148, + 2679: 148, + 2680: 148, + 2681: 148, + 2682: 148, + 2683: 148, + 2684: 148, + 2685: 148, + 2686: 148, + 2687: 148, + 2688: 148, + 2689: 148, + 2690: 148, + 2691: 148, + 2692: 148, + 2693: 148, + 2694: 148, + 2695: 148, + 2696: 148, + 2697: 148, + 2698: 148, + 2699: 148, + 2700: 148, + 2701: 148, + 2702: 148, + 2703: 148, + 2704: 148, + 2705: 148, + 2706: 148, + 2707: 148, + 2708: 148, + 2709: 148, + 2710: 148, + 2711: 148, + 2712: 148, + 2713: 148, + 2714: 148, + 2715: 148, + 2716: 148, + 2717: 148, + 2718: 148, + 2719: 148, + 2720: 148, + 2721: 148, + 2722: 148, + 2723: 148, + 2724: 148, + 2725: 148, + 2726: 148, + 2727: 148, + 2728: 148, + 2729: 148, + 2730: 148, + 2731: 148, + 2732: 148, + 2733: 148, + 2734: 148, + 2735: 148, + 2736: 148, + 2737: 148, + 2738: 148, + 2739: 148, + 2740: 148, + 2741: 148, + 2742: 148, + 2743: 148, + 2744: 148, + 2745: 148, + 2746: 148, + 2747: 148, + 2748: 148, + 2749: 148, + 2750: 148, + 2751: 148, + 2752: 148, + 2753: 148, + 2754: 148, + 2755: 148, + 2756: 148, + 2757: 148, + 2758: 148, + 2759: 148, + 2760: 148, + 2761: 148, + 2762: 148, + 2763: 148, + 2764: 148, + 2765: 148, + 2766: 148, + 2767: 148, + 2768: 148, + 2769: 148, + 2770: 148, + 2771: 148, + 2772: 148, + 2773: 148, + 2774: 148, + 2775: 148, + 2776: 148, + 2777: 148, + 2778: 148, + 2779: 148, + 2780: 148, + 2781: 148, + 2782: 148, + 2783: 148, + 2784: 148, + 2785: 148, + 2786: 148, + 2787: 148, + 2788: 148, + 2789: 148, + 2790: 148, + 2791: 148, + 2792: 148, + 2793: 148, + 2794: 148, + 2795: 148, + 2796: 148, + 2797: 148, + 2798: 148, + 2799: 148, + 2800: 148, + 2801: 148, + 2802: 148, + 2803: 148, + 2804: 148, + 2805: 148, + 2806: 148, + 2807: 148, + 2808: 148, + 2809: 148, + 2810: 148, + 2811: 148, + 2812: 148, + 2813: 148, + 2814: 148, + 2815: 148, + 2816: 148, + 2817: 148, + 2818: 148, + 2819: 148, + 2820: 148, + 2821: 148, + 2822: 148, + 2823: 148, + 2824: 148, + 2825: 148, + 2826: 148, + 2827: 148, + 2828: 148, + 2829: 148, + 2830: 148, + 2831: 148, + 2832: 148, + 2833: 148, + 2834: 148, + 2835: 148, + 2836: 148, + 2837: 148, + 2838: 148, + 2839: 148, + 2840: 148, + 2841: 148, + 2842: 148, + 2843: 148, + 2844: 148, + 2845: 148, + 2846: 148, + 2847: 148, + 2848: 148, + 2849: 148, + 2850: 148, + 2851: 148, + 2852: 148, + 2853: 148, + 2854: 148, + 2855: 148, + 2856: 148, + 2857: 148, + 2858: 148, + 2859: 148, + 2860: 148, + 2861: 148, + 2862: 148, + 2863: 148, + 2864: 148, + 2865: 148, + 2866: 148, + 2867: 148, + 2868: 148, + 2869: 148, + 2870: 148, + 2871: 148, + 2872: 148, + 2873: 148, + 2874: 148, + 2875: 148, + 2876: 148, + 2877: 148, + 2878: 148, + 2879: 148, + 2880: 148, + 2881: 148, + 2882: 148, + 2883: 148, + 2884: 148, + 2885: 148, + 2886: 148, + 2887: 148, + 2888: 148, + 2889: 148, + 2890: 148, + 2891: 148, + 2892: 148, + 2893: 148, + 2894: 148, + 2895: 148, + 2896: 148, + 2897: 148, + 2898: 148, + 2899: 148, + 2900: 148, + 2901: 148, + 2902: 148, + 2903: 148, + 2904: 148, + 2905: 148, + 2906: 148, + 2907: 148, + 2908: 148, + 2909: 148, + 2910: 148, + 2911: 148, + 2912: 148, + 2913: 148, + 2914: 148, + 2915: 148, + 2916: 148, + 2917: 148, + 2918: 148, + 2919: 148, + 2920: 148, + 2921: 148, + 2922: 148, + 2923: 148, + 2924: 148, + 2925: 148, + 2926: 148, + 2927: 148, + 2928: 148, + 2929: 148, + 2930: 148, + 2931: 148, + 2932: 148, + 2933: 148, + 2934: 148, + 2935: 148, + 2936: 148, + 2937: 148, + 2938: 148, + 2939: 148, + 2940: 148, + 2941: 148, + 2942: 148, + 2943: 148, + 2944: 148, + 2945: 148, + 2946: 148, + 2947: 148, + 2948: 148, + 2949: 148, + 2950: 148, + 2951: 148, + 2952: 148, + 2953: 148, + 2954: 148, + 2955: 148, + 2956: 148, + 2957: 148, + 2958: 148, + 2959: 148, + 2960: 148, + 2961: 148, + 2962: 148, + 2963: 148, + 2964: 148, + 2965: 148, + 2966: 148, + 2967: 148, + 2968: 148, + 2969: 148, + 2970: 148, + 2971: 148, + 2972: 148, + 2973: 148, + 2974: 148, + 2975: 148, + 2976: 148, + 2977: 148, + 2978: 148, + 2979: 148, + 2980: 148, + 2981: 148, + 2982: 148, + 2983: 148, + 2984: 148, + 2985: 148, + 2986: 148, + 2987: 148, + 2988: 148, + 2989: 148, + 2990: 148, + 2991: 148, + 2992: 148, + 2993: 148, + 2994: 148, + 2995: 148, + 2996: 148, + 2997: 148, + 2998: 148, + 2999: 148, + 3000: 148, + 3001: 148, + 3002: 148, + 3003: 148, + 3004: 148, + 3005: 148, + 3006: 148, + 3007: 148, + 3008: 148, + 3009: 148, + 3010: 148, + 3011: 148, + 3012: 148, + 3013: 148, + 3014: 148, + 3015: 148, + 3016: 148, + 3017: 148, + 3018: 148, + 3019: 148, + 3020: 148, + 3021: 148, + 3022: 148, + 3023: 148, + 3024: 148, + 3025: 148, + 3026: 148, + 3027: 148, + 3028: 148, + 3029: 148, + 3030: 148, + 3031: 148, + 3032: 148, + 3033: 148, + 3034: 148, + 3035: 148, + 3036: 148, + 3037: 148, + 3038: 148, + 3039: 148, + 3040: 148, + 3041: 148, + 3042: 148, + 3043: 148, + 3044: 148, + 3045: 148, + 3046: 148, + 3047: 148, + 3048: 148, + 3049: 148, + 3050: 148, + 3051: 148, + 3052: 148, + 3053: 148, + 3054: 148, + 3055: 148, + 3056: 148, + 3057: 148, + 3058: 148, + 3059: 148, + 3060: 148, + 3061: 148, + 3062: 148, + 3063: 148, + 3064: 148, + 3065: 148, + 3066: 148, + 3067: 148, + 3068: 148, + 3069: 148, + 3070: 148, + 3071: 148, + 3072: 148, + 3073: 148, + 3074: 148, + 3075: 148, + 3076: 148, + 3077: 148, + 3078: 148, + 3079: 148, + 3080: 148, + 3081: 148, + 3082: 148, + 3083: 148, + 3084: 148, + 3085: 148, + 3086: 148, + 3087: 148, + 3088: 148, + 3089: 148, + 3090: 148, + 3091: 148, + 3092: 148, + 3093: 148, + 3094: 148, + 3095: 148, + 3096: 148, + 3097: 148, + 3098: 148, + 3099: 148, + 3100: 148, + 3101: 148, + 3102: 148, + 3103: 148, + 3104: 148, + 3105: 148, + 3106: 148, + 3107: 148, + 3108: 148, + 3109: 148, + 3110: 148, + 3111: 148, + 3112: 148, + 3113: 148, + 3114: 148, + 3115: 148, + 3116: 148, + 3117: 148, + 3118: 148, + 3119: 148, + 3120: 148, + 3121: 148, + 3122: 148, + 3123: 148, + 3124: 148, + 3125: 148, + 3126: 148, + 3127: 148, + 3128: 148, + 3129: 148, + 3130: 148, + 3131: 148, + 3132: 148, + 3133: 148, + 3134: 148, + 3135: 148, + 3136: 148, + 3137: 148, + 3138: 148, + 3139: 148, + 3140: 148, + 3141: 148, + 3142: 148, + 3143: 148, + 3144: 148, + 3145: 148, + 3146: 148, + 3147: 148, + 3148: 148, + 3149: 148, + 3150: 148, + 3151: 148, + 3152: 148, + 3153: 148, + 3154: 148, + 3155: 148, + 3156: 148, + 3157: 148, + 3158: 148, + 3159: 148, + 3160: 148, + 3161: 148, + 3162: 148, + 3163: 148, + 3164: 148, + 3165: 148, + 3166: 148, + 3167: 148, + 3168: 148, + 3169: 148, + 3170: 148, + 3171: 148, + 3172: 148, + 3173: 148, + 3174: 148, + 3175: 148, + 3176: 148, + 3177: 148, + 3178: 148, + 3179: 148, + 3180: 148, + 3181: 148, + 3182: 148, + 3183: 148, + 3184: 148, + 3185: 148, + 3186: 148, + 3187: 148, + 3188: 148, + 3189: 148, + 3190: 148, + 3191: 148, + 3192: 148, + 3193: 148, + 3194: 148, + 3195: 148, + 3196: 148, + 3197: 148, + 3198: 148, + 3199: 148, + 3200: 148, + 3201: 148, + 3202: 148, + 3203: 148, + 3204: 148, + 3205: 148, + 3206: 148, + 3207: 148, + 3208: 148, + 3209: 148, + 3210: 148, + 3211: 148, + 3212: 148, + 3213: 148, + 3214: 148, + 3215: 148, + 3216: 148, + 3217: 148, + 3218: 148, + 3219: 148, + 3220: 148, + 3221: 148, + 3222: 148, + 3223: 148, + 3224: 148, + 3225: 148, + 3226: 148, + 3227: 148, + 3228: 148, + 3229: 148, + 3230: 148, + 3231: 148, + 3232: 148, + 3233: 148, + 3234: 148, + 3235: 148, + 3236: 148, + 3237: 148, + 3238: 148, + 3239: 148, + 3240: 148, + 3241: 148, + 3242: 148, + 3243: 148, + 3244: 148, + 3245: 148, + 3246: 148, + 3247: 148, + 3248: 148, + 3249: 148, + 3250: 148, + 3251: 148, + 3252: 148, + 3253: 148, + 3254: 148, + 3255: 148, + 3256: 148, + 3257: 148, + 3258: 148, + 3259: 148, + 3260: 148, + 3261: 148, + 3262: 148, + 3263: 148, + 3264: 148, + 3265: 148, + 3266: 148, + 3267: 148, + 3268: 148, + 3269: 148, + 3270: 148, + 3271: 148, + 3272: 148, + 3273: 148, + 3274: 148, + 3275: 148, + 3276: 148, + 3277: 148, + 3278: 148, + 3279: 148, + 3280: 148, + 3281: 148, + 3282: 148, + 3283: 148, + 3284: 148, + 3285: 148, + 3286: 148, + 3287: 148, + 3288: 148, + 3289: 148, + 3290: 148, + 3291: 148, + 3292: 148, + 3293: 148, + 3294: 148, + 3295: 148, + 3296: 148, + 3297: 148, + 3298: 148, + 3299: 148, + 3300: 148, + 3301: 148, + 3302: 148, + 3303: 148, + 3304: 148, + 3305: 148, + 3306: 148, + 3307: 148, + 3308: 148, + 3309: 148, + 3310: 148, + 3311: 148, + 3312: 148, + 3313: 148, + 3314: 148, + 3315: 148, + 3316: 148, + 3317: 148, + 3318: 148, + 3319: 148, + 3320: 148, + 3321: 148, + 3322: 148, + 3323: 148, + 3324: 148, + 3325: 148, + 3326: 148, + 3327: 148, + 3328: 148, + 3329: 148, + 3330: 148, + 3331: 148, + 3332: 148, + 3333: 148, + 3334: 148, + 3335: 148, + 3336: 148, + 3337: 148, + 3338: 148, + 3339: 148, + 3340: 148, + 3341: 148, + 3342: 148, + 3343: 148, + 3344: 148, + 3345: 148, + 3346: 148, + 3347: 148, + 3348: 148, + 3349: 148, + 3350: 148, + 3351: 148, + 3352: 148, + 3353: 148, + 3354: 149, + 3355: 150, + 3356: 151, + 3357: 152, + 3358: 152, + 3359: 152, + 3360: 152, + 3361: 152, + 3362: 152, + 3363: 152, + 3364: 152, + 3365: 153, + 3366: 153, + 3367: 153, + 3368: 153, + 3369: 153, + 3370: 153, + 3371: 153, + 3372: 153, + 3373: 154, + 3374: 154, + 3375: 154, + 3376: 154, + 3377: 154, + 3378: 154, + 3379: 154, + 3380: 154, + 3381: 155, + 3382: 155, + 3383: 155, + 3384: 155, + 3385: 155, + 3386: 155, + 3387: 155, + 3388: 155, + 3389: 155, + 3390: 155, + 3391: 155, + 3392: 155, + 3393: 155, + 3394: 155, + 3395: 155, + 3396: 155, + 3397: 155, + 3398: 155, + 3399: 155, + 3400: 155, + 3401: 155, + 3402: 155, + 3403: 155, + 3404: 155, + 3405: 155, + 3406: 155, + 3407: 155, + 3408: 155, + 3409: 155, + 3410: 155, + 3411: 155, + 3412: 155, + 3413: 156, + 3414: 156, + 3415: 156, + 3416: 156, + 3417: 156, + 3418: 156, + 3419: 156, + 3420: 156, + 3421: 156, + 3422: 156, + 3423: 156, + 3424: 156, + 3425: 156, + 3426: 156, + 3427: 156, + 3428: 156, + 3429: 156, + 3430: 156, + 3431: 156, + 3432: 156, + 3433: 156, + 3434: 156, + 3435: 156, + 3436: 156, + 3437: 156, + 3438: 156, + 3439: 156, + 3440: 156, + 3441: 156, + 3442: 156, + 3443: 156, + 3444: 156, + 3445: 157, + 3446: 157, + 3447: 157, + 3448: 157, + 3449: 157, + 3450: 157, + 3451: 157, + 3452: 157, + 3453: 157, + 3454: 157, + 3455: 157, + 3456: 157, + 3457: 157, + 3458: 157, + 3459: 157, + 3460: 157, + 3461: 157, + 3462: 157, + 3463: 157, + 3464: 157, + 3465: 157, + 3466: 157, + 3467: 157, + 3468: 157, + 3469: 157, + 3470: 157, + 3471: 157, + 3472: 157, + 3473: 157, + 3474: 157, + 3475: 157, + 3476: 157, + 3477: 158, + 3478: 158, + 3479: 158, + 3480: 158, + 3481: 158, + 3482: 158, + 3483: 158, + 3484: 158, + 3485: 158, + 3486: 158, + 3487: 158, + 3488: 158, + 3489: 158, + 3490: 158, + 3491: 158, + 3492: 158, + 3493: 158, + 3494: 158, + 3495: 158, + 3496: 158, + 3497: 158, + 3498: 158, + 3499: 158, + 3500: 158, + 3501: 158, + 3502: 158, + 3503: 158, + 3504: 158, + 3505: 158, + 3506: 158, + 3507: 158, + 3508: 158, + 3509: 159, + 3510: 159, + 3511: 159, + 3512: 159, + 3513: 159, + 3514: 159, + 3515: 159, + 3516: 159, + 3517: 159, + 3518: 159, + 3519: 159, + 3520: 159, + 3521: 159, + 3522: 159, + 3523: 159, + 3524: 159, + 3525: 159, + 3526: 159, + 3527: 159, + 3528: 159, + 3529: 159, + 3530: 159, + 3531: 159, + 3532: 159, + 3533: 159, + 3534: 159, + 3535: 159, + 3536: 159, + 3537: 159, + 3538: 159, + 3539: 159, + 3540: 159, + 3541: 160, + 3542: 160, + 3543: 160, + 3544: 160, + 3545: 160, + 3546: 160, + 3547: 160, + 3548: 160, + 3549: 160, + 3550: 160, + 3551: 160, + 3552: 160, + 3553: 160, + 3554: 160, + 3555: 160, + 3556: 160, + 3557: 160, + 3558: 160, + 3559: 160, + 3560: 160, + 3561: 160, + 3562: 160, + 3563: 160, + 3564: 160, + 3565: 160, + 3566: 160, + 3567: 160, + 3568: 160, + 3569: 160, + 3570: 160, + 3571: 160, + 3572: 160, + 3573: 161, + 3574: 161, + 3575: 161, + 3576: 161, + 3577: 161, + 3578: 161, + 3579: 161, + 3580: 161, + 3581: 161, + 3582: 161, + 3583: 161, + 3584: 161, + 3585: 161, + 3586: 161, + 3587: 161, + 3588: 161, + 3589: 161, + 3590: 161, + 3591: 161, + 3592: 161, + 3593: 161, + 3594: 161, + 3595: 161, + 3596: 161, + 3597: 161, + 3598: 161, + 3599: 161, + 3600: 161, + 3601: 161, + 3602: 161, + 3603: 161, + 3604: 161, + 3605: 161, + 3606: 161, + 3607: 161, + 3608: 161, + 3609: 161, + 3610: 161, + 3611: 161, + 3612: 161, + 3613: 161, + 3614: 161, + 3615: 161, + 3616: 161, + 3617: 161, + 3618: 161, + 3619: 161, + 3620: 161, + 3621: 161, + 3622: 161, + 3623: 161, + 3624: 161, + 3625: 161, + 3626: 161, + 3627: 161, + 3628: 161, + 3629: 161, + 3630: 161, + 3631: 161, + 3632: 161, + 3633: 161, + 3634: 161, + 3635: 161, + 3636: 161, + 3637: 162, + 3638: 162, + 3639: 162, + 3640: 162, + 3641: 162, + 3642: 162, + 3643: 162, + 3644: 162, + 3645: 163, + 3646: 163, + 3647: 163, + 3648: 163, + 3649: 163, + 3650: 163, + 3651: 163, + 3652: 163, + 3653: 163, + 3654: 163, + 3655: 164, + 3656: 164, + 3657: 164, + 3658: 164, + 3659: 164, + 3660: 164, + 3661: 164, + 3662: 164, + 3663: 164, + 3664: 164, + 3665: 164, + 3666: 164, + 3667: 164, + 3668: 164, + 3669: 164, + 3670: 164, + 3671: 164, + 3672: 164, + 3673: 164, + 3674: 164, + 3675: 164, + 3676: 164, + 3677: 164, + 3678: 164, + 3679: 164, + 3680: 164, + 3681: 164, + 3682: 164, + 3683: 164, + 3684: 164, + 3685: 164, + 3686: 164, + 3687: 164, + 3688: 164, + 3689: 164, + 3690: 164, + 3691: 164, + 3692: 164, + 3693: 164, + 3694: 164, + 3695: 164, + 3696: 164, + 3697: 164, + 3698: 164, + 3699: 164, + 3700: 164, + 3701: 164, + 3702: 164, + 3703: 164, + 3704: 164, + 3705: 164, + 3706: 164, + 3707: 164, + 3708: 164, + 3709: 164, + 3710: 164, + 3711: 164, + 3712: 164, + 3713: 164, + 3714: 164, + 3715: 164, + 3716: 164, + 3717: 164, + 3718: 164, + 3719: 164, + 3720: 164, + 3721: 164, + 3722: 164, + 3723: 164, + 3724: 164, + 3725: 164, + 3726: 164, + 3727: 164, + 3728: 164, + 3729: 164, + 3730: 164, + 3731: 164, + 3732: 164, + 3733: 164, + 3734: 164, + 3735: 165, + 3736: 165, + 3737: 165, + 3738: 165, + 3739: 165, + 3740: 165, + 3741: 165, + 3742: 165, + 3743: 166, + 3744: 166, + 3745: 166, + 3746: 166, + 3747: 166, + 3748: 166, + 3749: 166, + 3750: 166, + 3751: 167, + 3752: 167, + 3753: 167, + 3754: 167, + 3755: 167, + 3756: 167, + 3757: 167, + 3758: 167, + 3759: 168, + 3760: 168, + 3761: 168, + 3762: 168, + 3763: 168, + 3764: 168, + 3765: 168, + 3766: 168, + 3767: 169, + 3768: 169, + 3769: 169, + 3770: 169, + 3771: 169, + 3772: 169, + 3773: 169, + 3774: 169, + 3775: 170, + 3776: 170, + 3777: 170, + 3778: 170, + 3779: 170, + 3780: 170, + 3781: 170, + 3782: 170, + 3783: 171, + 3784: 171, + 3785: 171, + 3786: 171, + 3787: 171, + 3788: 171, + 3789: 171, + 3790: 171, + 3791: 171, + 3792: 171, + 3793: 171, + 3794: 171, + 3795: 171, + 3796: 171, + 3797: 171, + 3798: 171, + 3799: 171, + 3800: 171, + 3801: 171, + 3802: 171, + 3803: 171, + 3804: 171, + 3805: 171, + 3806: 171, + 3807: 172, + 3808: 172, + 3809: 173, + 3810: 173, + 3811: 173, + 3812: 173, + 3813: 173, + 3814: 173, + 3815: 173, + 3816: 173, + 3817: 173, + 3818: 173, + 3819: 173, + 3820: 173, + 3821: 173, + 3822: 173, + 3823: 173, + 3824: 173, + 3825: 173, + 3826: 173, + 3827: 173, + 3828: 173, + 3829: 173, + 3830: 173, + 3831: 173, + 3832: 173, + 3833: 173, + 3834: 173, + 3835: 173, + 3836: 173, + 3837: 173, + 3838: 173, + 3839: 173, + 3840: 173, + 3841: 173, + 3842: 173, + 3843: 173, + 3844: 173, + 3845: 173, + 3846: 173, + 3847: 173, + 3848: 173, + 3849: 173, + 3850: 173, + 3851: 173, + 3852: 173, + 3853: 173, + 3854: 173, + 3855: 173, + 3856: 173, + 3857: 173, + 3858: 173, + 3859: 173, + 3860: 173, + 3861: 173, + 3862: 173, + 3863: 173, + 3864: 173, + 3865: 173, + 3866: 173, + 3867: 173, + 3868: 173, + 3869: 173, + 3870: 173, + 3871: 173, + 3872: 173, + 3873: 174, + 3874: 174, + 3875: 175, + 3876: 175, + 3877: 176, + 3878: 176, + 3879: 177, + 3880: 177, + 3881: 178, + 3882: 178, + 3883: 179, + 3884: 179, + 3885: 180, + 3886: 180, + 3887: 181, + 3888: 181, + 3889: 182, + 3890: 182, + 3891: 182, + 3892: 182, + 3893: 182, + 3894: 182, + 3895: 182, + 3896: 182, + 3897: 183, + 3898: 183, + 3899: 183, + 3900: 183, + 3901: 183, + 3902: 183, + 3903: 183, + 3904: 183, + 3905: 183, + 3906: 183, + 3907: 183, + 3908: 183, + 3909: 183, + 3910: 183, + 3911: 183, + 3912: 183, + 3913: 183, + 3914: 183, + 3915: 183, + 3916: 183, + 3917: 183, + 3918: 183, + 3919: 183, + 3920: 183, + 3921: 184, + 3922: 184, + 3923: 184, + 3924: 184, + 3925: 184, + 3926: 184, + 3927: 184, + 3928: 184, + 3929: 185, + 3930: 186, + 3931: 187, + 3932: 187, + 3933: 187, + 3934: 187, + 3935: 187, + 3936: 187, + 3937: 187, + 3938: 187, + 3939: 187, + 3940: 187, + 3941: 187, + 3942: 187, + 3943: 187, + 3944: 187, + 3945: 187, + 3946: 187, + 3947: 188, + 3948: 189, + 3949: 189, + 3950: 189, + 3951: 189, + 3952: 189, + 3953: 189, + 3954: 189, + 3955: 189, + 3956: 189, + 3957: 189, + 3958: 189, + 3959: 189, + 3960: 189, + 3961: 189, + 3962: 189, + 3963: 189, + 3964: 190, + 3965: 190, + 3966: 191, + 3967: 191, + 3968: 191, + 3969: 191, + 3970: 191, + 3971: 191, + 3972: 191, + 3973: 191, + 3974: 191, + 3975: 191, + 3976: 191, + 3977: 191, + 3978: 191, + 3979: 191, + 3980: 191, + 3981: 191, + 3982: 191, + 3983: 191, + 3984: 191, + 3985: 191, + 3986: 191, + 3987: 191, + 3988: 191, + 3989: 191, + 3990: 191, + 3991: 191, + 3992: 191, + 3993: 191, + 3994: 191, + 3995: 191, + 3996: 191, + 3997: 191, + 3998: 192, + 3999: 193, + 4000: 194, + 4001: 195, + 4002: 196, + 4003: 196, + 4004: 196, + 4005: 197, + 4006: 197, + 4007: 197, + 4008: 198, + 4009: 199, + 4010: 199, + 4011: 199, + 4012: 199, + 4013: 200, + 4014: 201, + 4015: 201, + 4016: 202, + 4017: 202, + 4018: 202, + 4019: 202, + 4020: 203, + 4021: 203, + 4022: 203, + 4023: 203, + 4024: 204, + 4025: 204, + 4026: 204, + 4027: 204, + 4028: 204, + 4029: 204, + 4030: 204, + 4031: 205, + 4032: 205, + 4033: 205, + 4034: 205, + 4035: 205, + 4036: 205, + 4037: 205, + 4038: 205, + 4039: 205, + 4040: 205, + 4041: 205, + 4042: 205, + 4043: 205, + 4044: 205, + 4045: 205, + 4046: 205, + 4047: 205, + 4048: 205, + 4049: 205, + 4050: 205, + 4051: 205, + 4052: 205, + 4053: 205, + 4054: 205, + 4055: 205, + 4056: 205, + 4057: 205, + 4058: 205, + 4059: 205, + 4060: 205, + 4061: 205, + 4062: 205, + 4063: 205, + 4064: 205, + 4065: 205, + 4066: 205, + 4067: 205, + 4068: 205, + 4069: 205, + 4070: 205, + 4071: 205, + 4072: 205, + 4073: 205, + 4074: 205, + 4075: 205, + 4076: 205, + 4077: 205, + 4078: 205, + 4079: 205, + 4080: 205, + 4081: 205, + 4082: 205, + 4083: 205, + 4084: 205, + 4085: 205, + 4086: 205, + 4087: 205, + 4088: 205, + 4089: 205, + 4090: 205, + 4091: 205, + 4092: 205, + 4093: 205, + 4094: 205, + 4095: 206, + 4096: 207, + 4097: 208, + 4098: 209, + 4099: 210, + 4100: 211, + 4101: 212, + 4102: 213, + 4103: 214, + 4104: 215, + 4105: 216, + 4106: 217, + 4107: 218, + 4108: 219, + 4109: 220, + 4110: 221, + 4111: 222, + 4112: 222, + 4113: 222, + 4114: 222, + 4115: 222, + 4116: 222, + 4117: 222, + 4118: 222, + 4119: 222, + 4120: 222, + 4121: 222, + 4122: 222, + 4123: 222, + 4124: 222, + 4125: 222, + 4126: 222, + 4127: 222, + 4128: 222, + 4129: 222, + 4130: 222, + 4131: 222, + 4132: 222, + 4133: 222, + 4134: 222, + 4135: 222, + 4136: 222, + 4137: 222, + 4138: 222, + 4139: 222, + 4140: 222, + 4141: 222, + 4142: 222, + 4143: 222, + 4144: 222, + 4145: 222, + 4146: 222, + 4147: 222, + 4148: 222, + 4149: 222, + 4150: 222, + 4151: 222, + 4152: 222, + 4153: 222, + 4154: 222, + 4155: 222, + 4156: 222, + 4157: 222, + 4158: 222, + 4159: 222, + 4160: 222, + 4161: 222, + 4162: 222, + 4163: 222, + 4164: 222, + 4165: 222, + 4166: 222, + 4167: 222, + 4168: 222, + 4169: 222, + 4170: 222, + 4171: 222, + 4172: 222, + 4173: 222, + 4174: 222, + 4175: 223, + 4176: 223, + 4177: 223, + 4178: 223, + 4179: 223, + 4180: 223, + 4181: 223, + 4182: 223, + 4183: 223, + 4184: 223, + 4185: 223, + 4186: 223, + 4187: 223, + 4188: 223, + 4189: 223, + 4190: 223, + 4191: 223, + 4192: 223, + 4193: 223, + 4194: 223, + 4195: 223, + 4196: 223, + 4197: 223, + 4198: 223, + 4199: 223, + 4200: 223, + 4201: 223, + 4202: 223, + 4203: 223, + 4204: 223, + 4205: 223, + 4206: 223, + 4207: 223, + 4208: 223, + 4209: 223, + 4210: 223, + 4211: 223, + 4212: 223, + 4213: 223, + 4214: 223, + 4215: 223, + 4216: 223, + 4217: 223, + 4218: 223, + 4219: 223, + 4220: 223, + 4221: 223, + 4222: 223, + 4223: 223, + 4224: 223, + 4225: 223, + 4226: 223, + 4227: 223, + 4228: 223, + 4229: 223, + 4230: 223, + 4231: 223, + 4232: 223, + 4233: 223, + 4234: 223, + 4235: 223, + 4236: 223, + 4237: 223, + 4238: 223, + 4239: 224, + 4240: 224, + 4241: 224, + 4242: 224, + 4243: 224, + 4244: 224, + 4245: 224, + 4246: 224, + 4247: 224, + 4248: 224, + 4249: 224, + 4250: 224, + 4251: 224, + 4252: 224, + 4253: 224, + 4254: 224, + 4255: 224, + 4256: 224, + 4257: 224, + 4258: 224, + 4259: 224, + 4260: 224, + 4261: 224, + 4262: 224, + 4263: 224, + 4264: 224, + 4265: 224, + 4266: 224, + 4267: 224, + 4268: 224, + 4269: 224, + 4270: 224, + 4271: 224, + 4272: 224, + 4273: 224, + 4274: 224, + 4275: 224, + 4276: 224, + 4277: 224, + 4278: 224, + 4279: 224, + 4280: 224, + 4281: 224, + 4282: 224, + 4283: 224, + 4284: 224, + 4285: 224, + 4286: 224, + 4287: 224, + 4288: 224, + 4289: 224, + 4290: 224, + 4291: 224, + 4292: 224, + 4293: 224, + 4294: 224, + 4295: 224, + 4296: 224, + 4297: 224, + 4298: 224, + 4299: 224, + 4300: 224, + 4301: 224, + 4302: 224, + 4303: 225, + 4304: 225, + 4305: 225, + 4306: 225, + 4307: 225, + 4308: 225, + 4309: 225, + 4310: 225, + 4311: 225, + 4312: 225, + 4313: 225, + 4314: 225, + 4315: 225, + 4316: 225, + 4317: 225, + 4318: 225, + 4319: 225, + 4320: 225, + 4321: 225, + 4322: 225, + 4323: 225, + 4324: 225, + 4325: 225, + 4326: 225, + 4327: 225, + 4328: 225, + 4329: 225, + 4330: 225, + 4331: 225, + 4332: 225, + 4333: 225, + 4334: 225, + 4335: 225, + 4336: 225, + 4337: 225, + 4338: 225, + 4339: 225, + 4340: 225, + 4341: 225, + 4342: 225, + 4343: 225, + 4344: 225, + 4345: 225, + 4346: 225, + 4347: 225, + 4348: 225, + 4349: 225, + 4350: 225, + 4351: 225, + 4352: 225, + 4353: 225, + 4354: 225, + 4355: 225, + 4356: 225, + 4357: 225, + 4358: 225, + 4359: 225, + 4360: 225, + 4361: 225, + 4362: 225, + 4363: 225, + 4364: 225, + 4365: 225, + 4366: 225, + 4367: 226, + 4368: 226, + 4369: 226, + 4370: 226, + 4371: 226, + 4372: 226, + 4373: 226, + 4374: 226, + 4375: 226, + 4376: 226, + 4377: 226, + 4378: 226, + 4379: 226, + 4380: 226, + 4381: 226, + 4382: 226, + 4383: 226, + 4384: 226, + 4385: 226, + 4386: 226, + 4387: 226, + 4388: 226, + 4389: 226, + 4390: 226, + 4391: 226, + 4392: 226, + 4393: 226, + 4394: 226, + 4395: 226, + 4396: 226, + 4397: 226, + 4398: 226, + 4399: 226, + 4400: 226, + 4401: 226, + 4402: 226, + 4403: 226, + 4404: 226, + 4405: 226, + 4406: 226, + 4407: 226, + 4408: 226, + 4409: 226, + 4410: 226, + 4411: 226, + 4412: 226, + 4413: 226, + 4414: 226, + 4415: 226, + 4416: 226, + 4417: 226, + 4418: 226, + 4419: 226, + 4420: 226, + 4421: 226, + 4422: 226, + 4423: 226, + 4424: 226, + 4425: 226, + 4426: 226, + 4427: 226, + 4428: 226, + 4429: 226, + 4430: 226, + 4431: 227, + 4432: 227, + 4433: 227, + 4434: 227, + 4435: 227, + 4436: 227, + 4437: 227, + 4438: 227, + 4439: 227, + 4440: 227, + 4441: 227, + 4442: 227, + 4443: 227, + 4444: 227, + 4445: 227, + 4446: 227, + 4447: 227, + 4448: 227, + 4449: 227, + 4450: 227, + 4451: 227, + 4452: 227, + 4453: 227, + 4454: 227, + 4455: 227, + 4456: 227, + 4457: 227, + 4458: 227, + 4459: 227, + 4460: 227, + 4461: 227, + 4462: 227, + 4463: 227, + 4464: 227, + 4465: 227, + 4466: 227, + 4467: 227, + 4468: 227, + 4469: 227, + 4470: 227, + 4471: 227, + 4472: 227, + 4473: 227, + 4474: 227, + 4475: 227, + 4476: 227, + 4477: 227, + 4478: 227, + 4479: 227, + 4480: 227, + 4481: 227, + 4482: 227, + 4483: 227, + 4484: 227, + 4485: 227, + 4486: 227, + 4487: 227, + 4488: 227, + 4489: 227, + 4490: 227, + 4491: 227, + 4492: 227, + 4493: 227, + 4494: 227, + 4495: 228, + 4496: 229, + 4497: 230, + 4498: 231, + 4499: 232, + 4500: 233, + 4501: 234, + 4502: 235, + 4503: 236, + 4504: 237, + 4505: 238, + 4506: 238, + 4507: 238, + 4508: 238, + 4509: 238, + 4510: 238, + 4511: 238, + 4512: 238, + 4513: 238, + 4514: 238, + 4515: 238, + 4516: 238, + 4517: 238, + 4518: 238, + 4519: 238, + 4520: 238, + 4521: 238, + 4522: 238, + 4523: 238, + 4524: 238, + 4525: 238, + 4526: 238, + 4527: 238, + 4528: 238, + 4529: 238, + 4530: 238, + 4531: 238, + 4532: 238, + 4533: 238, + 4534: 238, + 4535: 238, + 4536: 238, + 4537: 238, + 4538: 238, + 4539: 238, + 4540: 238, + 4541: 238, + 4542: 238, + 4543: 238, + 4544: 238, + 4545: 238, + 4546: 238, + 4547: 238, + 4548: 238, + 4549: 238, + 4550: 238, + 4551: 238, + 4552: 238, + 4553: 238, + 4554: 238, + 4555: 238, + 4556: 238, + 4557: 238, + 4558: 238, + 4559: 238, + 4560: 238, + 4561: 238, + 4562: 238, + 4563: 238, + 4564: 238, + 4565: 238, + 4566: 238, + 4567: 238, + 4568: 238, + 4569: 239, + 4570: 239, + 4571: 239, + 4572: 239, + 4573: 239, + 4574: 239, + 4575: 239, + 4576: 239, + 4577: 239, + 4578: 239, + 4579: 239, + 4580: 239, + 4581: 239, + 4582: 239, + 4583: 239, + 4584: 239, + 4585: 239, + 4586: 239, + 4587: 239, + 4588: 239, + 4589: 239, + 4590: 239, + 4591: 239, + 4592: 239, + 4593: 239, + 4594: 239, + 4595: 239, + 4596: 239, + 4597: 239, + 4598: 239, + 4599: 239, + 4600: 239, + 4601: 239, + 4602: 239, + 4603: 239, + 4604: 239, + 4605: 239, + 4606: 239, + 4607: 239, + 4608: 239, + 4609: 239, + 4610: 239, + 4611: 239, + 4612: 239, + 4613: 239, + 4614: 239, + 4615: 239, + 4616: 239, + 4617: 239, + 4618: 239, + 4619: 239, + 4620: 239, + 4621: 239, + 4622: 239, + 4623: 239, + 4624: 239, + 4625: 239, + 4626: 239, + 4627: 239, + 4628: 239, + 4629: 239, + 4630: 239, + 4631: 239, + 4632: 239, + 4633: 240, + 4634: 240, + 4635: 240, + 4636: 240, + 4637: 240, + 4638: 240, + 4639: 240, + 4640: 240, + 4641: 240, + 4642: 240, + 4643: 240, + 4644: 240, + 4645: 240, + 4646: 240, + 4647: 240, + 4648: 240, + 4649: 240, + 4650: 240, + 4651: 240, + 4652: 240, + 4653: 240, + 4654: 240, + 4655: 240, + 4656: 240, + 4657: 240, + 4658: 240, + 4659: 240, + 4660: 240, + 4661: 240, + 4662: 240, + 4663: 240, + 4664: 240, + 4665: 240, + 4666: 240, + 4667: 240, + 4668: 240, + 4669: 240, + 4670: 240, + 4671: 240, + 4672: 240, + 4673: 240, + 4674: 240, + 4675: 240, + 4676: 240, + 4677: 240, + 4678: 240, + 4679: 240, + 4680: 240, + 4681: 240, + 4682: 240, + 4683: 240, + 4684: 240, + 4685: 240, + 4686: 240, + 4687: 240, + 4688: 240, + 4689: 240, + 4690: 240, + 4691: 240, + 4692: 240, + 4693: 240, + 4694: 240, + 4695: 240, + 4696: 240, + 4697: 241, + 4698: 241, + 4699: 241, + 4700: 241, + 4701: 241, + 4702: 241, + 4703: 241, + 4704: 241, + 4705: 241, + 4706: 241, + 4707: 241, + 4708: 241, + 4709: 241, + 4710: 241, + 4711: 241, + 4712: 241, + 4713: 241, + 4714: 241, + 4715: 241, + 4716: 241, + 4717: 241, + 4718: 241, + 4719: 241, + 4720: 241, + 4721: 241, + 4722: 241, + 4723: 241, + 4724: 241, + 4725: 241, + 4726: 241, + 4727: 241, + 4728: 241, + 4729: 242, + 4730: 242, + 4731: 242, + 4732: 242, + 4733: 242, + 4734: 242, + 4735: 243, + 4736: 243, + 4737: 243, + 4738: 243, + 4739: 243, + 4740: 243, + 4741: 243, + 4742: 243, + 4743: 243, + 4744: 243, + 4745: 243, + 4746: 243, + 4747: 243, + 4748: 243, + 4749: 243, + 4750: 243, + 4751: 243, + 4752: 243, + 4753: 243, + 4754: 243, + 4755: 243, + 4756: 243, + 4757: 243, + 4758: 243, + 4759: 243, + 4760: 243, + 4761: 243, + 4762: 243, + 4763: 243, + 4764: 243, + 4765: 243, + 4766: 243, + 4767: 244, + 4768: 245, + 4769: 245, + 4770: 245, + 4771: 245, + 4772: 246, + 4773: 246, + 4774: 246, + 4775: 246, + 4776: 247, + 4777: 247, + 4778: 247, + 4779: 247, + 4780: 247, + 4781: 247, + 4782: 247, + 4783: 247, + 4784: 248, + 4785: 248, + 4786: 248, + 4787: 248, + 4788: 248, + 4789: 248, + 4790: 248, + 4791: 248, + 4792: 249, + 4793: 249, + 4794: 249, + 4795: 249, + 4796: 249, + 4797: 249, + 4798: 249, + 4799: 249, + 4800: 249, + 4801: 249, + 4802: 249, + 4803: 249, + 4804: 249, + 4805: 249, + 4806: 249, + 4807: 249, + 4808: 249, + 4809: 249, + 4810: 249, + 4811: 249, + 4812: 249, + 4813: 249, + 4814: 249, + 4815: 249, + 4816: 249, + 4817: 249, + 4818: 249, + 4819: 249, + 4820: 249, + 4821: 249, + 4822: 249, + 4823: 249, + 4824: 250, + 4825: 250, + 4826: 250, + 4827: 250, + 4828: 250, + 4829: 250, + 4830: 250, + 4831: 250, + 4832: 250, + 4833: 250, + 4834: 250, + 4835: 250, + 4836: 250, + 4837: 250, + 4838: 250, + 4839: 250, + 4840: 250, + 4841: 250, + 4842: 250, + 4843: 250, + 4844: 250, + 4845: 250, + 4846: 250, + 4847: 250, + 4848: 250, + 4849: 250, + 4850: 250, + 4851: 250, + 4852: 250, + 4853: 250, + 4854: 250, + 4855: 250, + 4856: 251, + 4857: 251, + 4858: 251, + 4859: 251, + 4860: 251, + 4861: 251, + 4862: 251, + 4863: 251, + 4864: 251, + 4865: 251, + 4866: 251, + 4867: 251, + 4868: 251, + 4869: 251, + 4870: 251, + 4871: 251, + 4872: 251, + 4873: 251, + 4874: 251, + 4875: 251, + 4876: 251, + 4877: 251, + 4878: 251, + 4879: 251, + 4880: 251, + 4881: 251, + 4882: 251, + 4883: 251, + 4884: 251, + 4885: 251, + 4886: 251, + 4887: 251, + 4888: 251, + 4889: 251, + 4890: 251, + 4891: 251, + 4892: 251, + 4893: 251, + 4894: 251, + 4895: 251, + 4896: 251, + 4897: 251, + 4898: 251, + 4899: 251, + 4900: 251, + 4901: 251, + 4902: 251, + 4903: 251, + 4904: 251, + 4905: 251, + 4906: 251, + 4907: 251, + 4908: 251, + 4909: 251, + 4910: 251, + 4911: 251, + 4912: 251, + 4913: 251, + 4914: 251, + 4915: 251, + 4916: 251, + 4917: 251, + 4918: 251, + 4919: 251, + 4920: 251, + 4921: 251, + 4922: 251, + 4923: 251, + 4924: 251, + 4925: 251, + 4926: 251, + 4927: 251, + 4928: 251, + 4929: 251, + 4930: 251, + 4931: 251, + 4932: 251, + 4933: 251, + 4934: 251, + 4935: 251, + 4936: 252, + 4937: 252, + 4938: 252, + 4939: 252, + 4940: 252, + 4941: 252, + 4942: 252, + 4943: 252, + 4944: 252, + 4945: 252, + 4946: 252, + 4947: 252, + 4948: 252, + 4949: 252, + 4950: 252, + 4951: 252, + 4952: 252, + 4953: 252, + 4954: 252, + 4955: 252, + 4956: 252, + 4957: 252, + 4958: 252, + 4959: 252, + 4960: 252, + 4961: 252, + 4962: 252, + 4963: 252, + 4964: 252, + 4965: 252, + 4966: 252, + 4967: 252, + 4968: 252, + 4969: 252, + 4970: 252, + 4971: 252, + 4972: 252, + 4973: 252, + 4974: 252, + 4975: 252, + 4976: 252, + 4977: 252, + 4978: 252, + 4979: 252, + 4980: 252, + 4981: 252, + 4982: 252, + 4983: 252, + 4984: 252, + 4985: 252, + 4986: 252, + 4987: 252, + 4988: 252, + 4989: 252, + 4990: 252, + 4991: 252, + 4992: 252, + 4993: 252, + 4994: 252, + 4995: 252, + 4996: 252, + 4997: 252, + 4998: 252, + 4999: 252, + 5000: 252, + 5001: 252, + 5002: 252, + 5003: 252, + 5004: 252, + 5005: 252, + 5006: 252, + 5007: 252, + 5008: 252, + 5009: 252, + 5010: 252, + 5011: 252, + 5012: 252, + 5013: 252, + 5014: 252, + 5015: 252, + 5016: 253, + 5017: 253, + 5018: 254, + 5019: 255, + 5020: 256, + 5021: 256, + 5022: 256, + 5023: 256, + 5024: 256, + 5025: 256, + 5026: 256, + 5027: 256, + 5028: 256, + 5029: 256, + 5030: 256, + 5031: 256, + 5032: 256, + 5033: 256, + 5034: 256, + 5035: 256, + 5036: 256, + 5037: 256, + 5038: 256, + 5039: 256, + 5040: 256, + 5041: 256, + 5042: 256, + 5043: 256, + 5044: 256, + 5045: 256, + 5046: 256, + 5047: 256, + 5048: 256, + 5049: 256, + 5050: 256, + 5051: 256, + 5052: 257, + 5053: 257, + 5054: 257, + 5055: 257, + 5056: 257, + 5057: 257, + 5058: 257, + 5059: 257, + 5060: 257, + 5061: 257, + 5062: 257, + 5063: 257, + 5064: 257, + 5065: 257, + 5066: 257, + 5067: 257, + 5068: 257, + 5069: 257, + 5070: 257, + 5071: 257, + 5072: 257, + 5073: 257, + 5074: 257, + 5075: 257, + 5076: 257, + 5077: 257, + 5078: 257, + 5079: 257, + 5080: 257, + 5081: 257, + 5082: 257, + 5083: 257, + 5084: 257, + 5085: 257, + 5086: 257, + 5087: 257, + 5088: 257, + 5089: 257, + 5090: 257, + 5091: 257, + 5092: 257, + 5093: 257, + 5094: 257, + 5095: 257, + 5096: 257, + 5097: 257, + 5098: 257, + 5099: 257, + 5100: 257, + 5101: 257, + 5102: 257, + 5103: 257, + 5104: 257, + 5105: 257, + 5106: 257, + 5107: 257, + 5108: 257, + 5109: 257, + 5110: 257, + 5111: 257, + 5112: 257, + 5113: 257, + 5114: 257, + 5115: 257, + 5116: 257, + 5117: 257, + 5118: 257, + 5119: 257, + 5120: 257, + 5121: 257, + 5122: 257, + 5123: 257, + 5124: 257, + 5125: 257, + 5126: 257, + 5127: 257, + 5128: 257, + 5129: 257, + 5130: 257, + 5131: 257, + 5132: 258, + 5133: 258, + 5134: 258, + 5135: 258, + 5136: 259, + 5137: 260, + 5138: 260, + 5139: 260, + 5140: 260, + 5141: 260, + 5142: 260, + 5143: 260, + 5144: 260, + 5145: 261, + 5146: 261, + 5147: 261, + 5148: 261, + 5149: 262, + 5150: 263, + 5151: 263, + 5152: 263, + 5153: 263, + 5154: 263, + 5155: 263, + 5156: 263, + 5157: 263, + 5158: 264, + 5159: 265, + 5160: 266, + 5161: 266, + 5162: 267, + 5163: 267, + 5164: 267, + 5165: 267, + 5166: 267, + 5167: 267, + 5168: 267, + 5169: 267, + 5170: 267, + 5171: 267, + 5172: 267, + 5173: 267, + 5174: 268, + 5175: 268, + 5176: 268, + 5177: 268, + 5178: 268, + 5179: 268, + 5180: 268, + 5181: 268, + 5182: 268, + 5183: 268, + 5184: 268, + 5185: 268, + 5186: 268, + 5187: 268, + 5188: 268, + 5189: 268, + 5190: 268, + 5191: 268, + 5192: 268, + 5193: 268, + 5194: 268, + 5195: 268, + 5196: 268, + 5197: 268, + 5198: 268, + 5199: 268, + 5200: 268, + 5201: 268, + 5202: 268, + 5203: 268, + 5204: 268, + 5205: 268, + 5206: 268, + 5207: 268, + 5208: 268, + 5209: 268, + 5210: 268, + 5211: 268, + 5212: 268, + 5213: 268, + 5214: 268, + 5215: 268, + 5216: 268, + 5217: 268, + 5218: 268, + 5219: 268, + 5220: 268, + 5221: 268, + 5222: 268, + 5223: 268, + 5224: 268, + 5225: 268, + 5226: 268, + 5227: 268, + 5228: 268, + 5229: 268, + 5230: 268, + 5231: 268, + 5232: 268, + 5233: 268, + 5234: 268, + 5235: 268, + 5236: 268, + 5237: 268, + 5238: 268, + 5239: 268, + 5240: 268, + 5241: 268, + 5242: 268, + 5243: 268, + 5244: 268, + 5245: 268, + 5246: 268, + 5247: 268, + 5248: 268, + 5249: 268, + 5250: 268, + 5251: 268, + 5252: 268, + 5253: 268, + 5254: 269, + 5255: 270, + 5256: 270, + 5257: 270, + 5258: 270, + 5259: 270, + 5260: 270, + 5261: 270, + 5262: 270, + 5263: 271, + 5264: 271, + 5265: 271, + 5266: 271, + 5267: 271, + 5268: 271, + 5269: 271, + 5270: 271, + 5271: 271, + 5272: 271, + 5273: 271, + 5274: 271, + 5275: 271, + 5276: 271, + 5277: 271, + 5278: 271, + 5279: 272, + 5280: 272, + 5281: 272, + 5282: 272, + 5283: 272, + 5284: 272, + 5285: 272, + 5286: 272, + 5287: 272, + 5288: 272, + 5289: 272, + 5290: 272, + 5291: 272, + 5292: 272, + 5293: 272, + 5294: 272, + 5295: 272, + 5296: 272, + 5297: 272, + 5298: 272, + 5299: 272, + 5300: 272, + 5301: 272, + 5302: 272, + 5303: 272, + 5304: 272, + 5305: 272, + 5306: 272, + 5307: 272, + 5308: 272, + 5309: 272, + 5310: 272, + 5311: 272, + 5312: 272, + 5313: 272, + 5314: 272, + 5315: 272, + 5316: 272, + 5317: 272, + 5318: 272, + 5319: 272, + 5320: 272, + 5321: 272, + 5322: 272, + 5323: 272, + 5324: 272, + 5325: 272, + 5326: 272, + 5327: 272, + 5328: 272, + 5329: 272, + 5330: 272, + 5331: 272, + 5332: 272, + 5333: 272, + 5334: 272, + 5335: 272, + 5336: 272, + 5337: 272, + 5338: 272, + 5339: 272, + 5340: 272, + 5341: 272, + 5342: 272, + 5343: 272, + 5344: 272, + 5345: 272, + 5346: 272, + 5347: 272, + 5348: 272, + 5349: 272, + 5350: 272, + 5351: 272, + 5352: 272, + 5353: 272, + 5354: 272, + 5355: 272, + 5356: 272, + 5357: 272, + 5358: 272, + 5359: 272, + 5360: 272, + 5361: 272, + 5362: 272, + 5363: 272, + 5364: 272, + 5365: 272, + 5366: 272, + 5367: 272, + 5368: 272, + 5369: 272, + 5370: 272, + 5371: 272, + 5372: 272, + 5373: 272, + 5374: 272, + 5375: 272, + 5376: 272, + 5377: 272, + 5378: 272, + 5379: 272, + 5380: 272, + 5381: 272, + 5382: 272, + 5383: 272, + 5384: 272, + 5385: 272, + 5386: 272, + 5387: 272, + 5388: 272, + 5389: 272, + 5390: 272, + 5391: 272, + 5392: 272, + 5393: 272, + 5394: 272, + 5395: 272, + 5396: 272, + 5397: 272, + 5398: 272, + 5399: 272, + 5400: 272, + 5401: 272, + 5402: 272, + 5403: 272, + 5404: 272, + 5405: 272, + 5406: 272, + 5407: 273, + 5408: 274, + 5409: 274, + 5410: 274, + 5411: 274, + 5412: 274, + 5413: 274, + 5414: 274, + 5415: 274, + 5416: 274, + 5417: 274, + 5418: 274, + 5419: 274, + 5420: 274, + 5421: 274, + 5422: 274, + 5423: 274, + 5424: 274, + 5425: 274, + 5426: 274, + 5427: 274, + 5428: 274, + 5429: 274, + 5430: 274, + 5431: 274, + 5432: 274, + 5433: 274, + 5434: 274, + 5435: 274, + 5436: 274, + 5437: 274, + 5438: 274, + 5439: 274, + 5440: 274, + 5441: 274, + 5442: 274, + 5443: 274, + 5444: 274, + 5445: 274, + 5446: 274, + 5447: 274, + 5448: 274, + 5449: 274, + 5450: 274, + 5451: 274, + 5452: 274, + 5453: 274, + 5454: 274, + 5455: 274, + 5456: 274, + 5457: 274, + 5458: 274, + 5459: 274, + 5460: 274, + 5461: 274, + 5462: 274, + 5463: 274, + 5464: 274, + 5465: 274, + 5466: 274, + 5467: 274, + 5468: 274, + 5469: 274, + 5470: 274, + 5471: 274, + 5472: 274, + 5473: 274, + 5474: 274, + 5475: 274, + 5476: 274, + 5477: 274, + 5478: 274, + 5479: 274, + 5480: 274, + 5481: 274, + 5482: 274, + 5483: 274, + 5484: 274, + 5485: 274, + 5486: 274, + 5487: 274, + 5488: 275, + 5489: 275, + 5490: 275, + 5491: 275, + 5492: 275, + 5493: 275, + 5494: 275, + 5495: 275, + 5496: 275, + 5497: 275, + 5498: 275, + 5499: 275, + 5500: 275, + 5501: 275, + 5502: 275, + 5503: 275, + 5504: 275, + 5505: 275, + 5506: 275, + 5507: 275, + 5508: 275, + 5509: 275, + 5510: 275, + 5511: 275, + 5512: 275, + 5513: 275, + 5514: 275, + 5515: 275, + 5516: 275, + 5517: 275, + 5518: 275, + 5519: 275, + 5520: 275, + 5521: 275, + 5522: 275, + 5523: 275, + 5524: 275, + 5525: 275, + 5526: 275, + 5527: 275, + 5528: 275, + 5529: 275, + 5530: 275, + 5531: 275, + 5532: 275, + 5533: 275, + 5534: 275, + 5535: 275, + 5536: 275, + 5537: 275, + 5538: 275, + 5539: 275, + 5540: 275, + 5541: 275, + 5542: 275, + 5543: 275, + 5544: 275, + 5545: 275, + 5546: 275, + 5547: 275, + 5548: 275, + 5549: 275, + 5550: 275, + 5551: 275, + 5552: 275, + 5553: 275, + 5554: 275, + 5555: 275, + 5556: 275, + 5557: 275, + 5558: 275, + 5559: 275, + 5560: 275, + 5561: 275, + 5562: 275, + 5563: 275, + 5564: 275, + 5565: 275, + 5566: 275, + 5567: 275, + 5568: 276, + 5569: 276, + 5570: 276, + 5571: 276, + 5572: 276, + 5573: 276, + 5574: 276, + 5575: 276, + 5576: 276, + 5577: 276, + 5578: 276, + 5579: 276, + 5580: 276, + 5581: 276, + 5582: 276, + 5583: 276, + 5584: 276, + 5585: 276, + 5586: 276, + 5587: 276, + 5588: 276, + 5589: 276, + 5590: 276, + 5591: 276, + 5592: 276, + 5593: 276, + 5594: 276, + 5595: 276, + 5596: 276, + 5597: 276, + 5598: 276, + 5599: 276, + 5600: 276, + 5601: 276, + 5602: 276, + 5603: 276, + 5604: 276, + 5605: 276, + 5606: 276, + 5607: 276, + 5608: 276, + 5609: 276, + 5610: 276, + 5611: 276, + 5612: 276, + 5613: 276, + 5614: 276, + 5615: 276, + 5616: 276, + 5617: 276, + 5618: 276, + 5619: 276, + 5620: 276, + 5621: 276, + 5622: 276, + 5623: 276, + 5624: 276, + 5625: 276, + 5626: 276, + 5627: 276, + 5628: 276, + 5629: 276, + 5630: 276, + 5631: 276, + 5632: 276, + 5633: 276, + 5634: 276, + 5635: 276, + 5636: 276, + 5637: 276, + 5638: 276, + 5639: 276, + 5640: 276, + 5641: 276, + 5642: 276, + 5643: 276, + 5644: 276, + 5645: 276, + 5646: 276, + 5647: 276, + 5648: 277, + 5649: 277, + 5650: 277, + 5651: 277, + 5652: 277, + 5653: 277, + 5654: 277, + 5655: 277, + 5656: 277, + 5657: 277, + 5658: 277, + 5659: 277, + 5660: 278, + 5661: 279, + 5662: 279, + 5663: 279, + 5664: 279, + 5665: 279, + 5666: 279, + 5667: 279, + 5668: 279, + 5669: 279, + 5670: 279, + 5671: 279, + 5672: 279, + 5673: 279, + 5674: 279, + 5675: 279, + 5676: 279, + 5677: 279, + 5678: 279, + 5679: 279, + 5680: 279, + 5681: 279, + 5682: 279, + 5683: 279, + 5684: 279, + 5685: 279, + 5686: 279, + 5687: 279, + 5688: 279, + 5689: 279, + 5690: 279, + 5691: 279, + 5692: 279, + 5693: 279, + 5694: 279, + 5695: 279, + 5696: 279, + 5697: 279, + 5698: 279, + 5699: 279, + 5700: 279, + 5701: 279, + 5702: 279, + 5703: 279, + 5704: 279, + 5705: 279, + 5706: 279, + 5707: 279, + 5708: 279, + 5709: 279, + 5710: 279, + 5711: 279, + 5712: 279, + 5713: 279, + 5714: 279, + 5715: 279, + 5716: 279, + 5717: 279, + 5718: 279, + 5719: 279, + 5720: 279, + 5721: 279, + 5722: 279, + 5723: 279, + 5724: 279, + 5725: 279, + 5726: 279, + 5727: 279, + 5728: 279, + 5729: 279, + 5730: 279, + 5731: 279, + 5732: 279, + 5733: 279, + 5734: 279, + 5735: 279, + 5736: 279, + 5737: 279, + 5738: 279, + 5739: 279, + 5740: 279, + 5741: 279, + 5742: 279, + 5743: 279, + 5744: 279, + 5745: 279, + 5746: 279, + 5747: 279, + 5748: 279, + 5749: 279, + 5750: 279, + 5751: 279, + 5752: 279, + 5753: 279, + 5754: 279, + 5755: 279, + 5756: 279, + 5757: 279, + 5758: 279, + 5759: 279, + 5760: 279, + 5761: 279, + 5762: 279, + 5763: 279, + 5764: 279, + 5765: 279, + 5766: 279, + 5767: 279, + 5768: 279, + 5769: 279, + 5770: 279, + 5771: 279, + 5772: 279, + 5773: 279, + 5774: 279, + 5775: 279, + 5776: 279, + 5777: 279, + 5778: 279, + 5779: 279, + 5780: 279, + 5781: 279, + 5782: 279, + 5783: 279, + 5784: 279, + 5785: 279, + 5786: 279, + 5787: 279, + 5788: 279, + 5789: 279, + 5790: 279, + 5791: 279, + 5792: 279, + 5793: 279, + 5794: 279, + 5795: 279, + 5796: 279, + 5797: 279, + 5798: 279, + 5799: 279, + 5800: 279, + 5801: 279, + 5802: 279, + 5803: 279, + 5804: 279, + 5805: 279, + 5806: 279, + 5807: 279, + 5808: 279, + 5809: 279, + 5810: 279, + 5811: 279, + 5812: 279, + 5813: 279, + 5814: 279, + 5815: 279, + 5816: 279, + 5817: 279, + 5818: 279, + 5819: 279, + 5820: 279, + 5821: 279, + 5822: 279, + 5823: 279, + 5824: 279, + 5825: 279, + 5826: 279, + 5827: 279, + 5828: 279, + 5829: 279, + 5830: 279, + 5831: 279, + 5832: 279, + 5833: 279, + 5834: 279, + 5835: 279, + 5836: 279, + 5837: 279, + 5838: 279, + 5839: 279, + 5840: 279, + 5841: 279, + 5842: 279, + 5843: 279, + 5844: 279, + 5845: 279, + 5846: 279, + 5847: 279, + 5848: 279, + 5849: 279, + 5850: 279, + 5851: 279, + 5852: 279, + 5853: 279, + 5854: 279, + 5855: 279, + 5856: 279, + 5857: 279, + 5858: 279, + 5859: 279, + 5860: 279, + 5861: 279, + 5862: 279, + 5863: 279, + 5864: 279, + 5865: 279, + 5866: 279, + 5867: 279, + 5868: 279, + 5869: 279, + 5870: 279, + 5871: 279, + 5872: 279, + 5873: 279, + 5874: 279, + 5875: 279, + 5876: 279, + 5877: 279, + 5878: 279, + 5879: 279, + 5880: 279, + 5881: 279, + 5882: 279, + 5883: 279, + 5884: 279, + 5885: 279, + 5886: 279, + 5887: 279, + 5888: 279, + 5889: 279, + 5890: 279, + 5891: 279, + 5892: 279, + 5893: 279, + 5894: 279, + 5895: 279, + 5896: 279, + 5897: 279, + 5898: 279, + 5899: 279, + 5900: 279, + 5901: 279, + 5902: 279, + 5903: 279, + 5904: 279, + 5905: 279, + 5906: 279, + 5907: 279, + 5908: 279, + 5909: 279, + 5910: 279, + 5911: 279, + 5912: 279, + 5913: 279, + 5914: 279, + 5915: 279, + 5916: 279, + 5917: 279, + 5918: 279, + 5919: 279, + 5920: 279, + 5921: 279, + 5922: 279, + 5923: 279, + 5924: 279, + 5925: 279, + 5926: 279, + 5927: 279, + 5928: 279, + 5929: 279, + 5930: 279, + 5931: 279, + 5932: 279, + 5933: 279, + 5934: 279, + 5935: 279, + 5936: 279, + 5937: 279, + 5938: 279, + 5939: 279, + 5940: 279, + 5941: 279, + 5942: 279, + 5943: 279, + 5944: 279, + 5945: 279, + 5946: 279, + 5947: 279, + 5948: 279, + 5949: 279, + 5950: 279, + 5951: 279, + 5952: 279, + 5953: 279, + 5954: 279, + 5955: 279, + 5956: 279, + 5957: 279, + 5958: 279, + 5959: 279, + 5960: 279, + 5961: 279, + 5962: 279, + 5963: 279, + 5964: 279, + 5965: 279, + 5966: 279, + 5967: 279, + 5968: 279, + 5969: 279, + 5970: 279, + 5971: 279, + 5972: 279, + 5973: 279, + 5974: 279, + 5975: 279, + 5976: 279, + 5977: 279, + 5978: 279, + 5979: 279, + 5980: 279, + 5981: 279, + 5982: 279, + 5983: 279, + 5984: 279, + 5985: 280, + 5986: 280, + 5987: 280, + 5988: 280, + 5989: 280, + 5990: 280, + 5991: 280, + 5992: 280, + 5993: 280, + 5994: 280, + 5995: 280, + 5996: 280, + 5997: 280, + 5998: 280, + 5999: 280, + 6000: 280, + 6001: 280, + 6002: 280, + 6003: 280, + 6004: 280, + 6005: 280, + 6006: 280, + 6007: 280, + 6008: 280, + 6009: 280, + 6010: 280, + 6011: 280, + 6012: 280, + 6013: 280, + 6014: 280, + 6015: 280, + 6016: 280, + 6017: 280, + 6018: 280, + 6019: 280, + 6020: 280, + 6021: 280, + 6022: 280, + 6023: 280, + 6024: 280, + 6025: 280, + 6026: 280, + 6027: 280, + 6028: 280, + 6029: 280, + 6030: 280, + 6031: 280, + 6032: 280, + 6033: 280, + 6034: 280, + 6035: 280, + 6036: 280, + 6037: 280, + 6038: 280, + 6039: 280, + 6040: 280, + 6041: 280, + 6042: 280, + 6043: 280, + 6044: 280, + 6045: 280, + 6046: 280, + 6047: 280, + 6048: 280, + 6049: 280, + 6050: 280, + 6051: 280, + 6052: 280, + 6053: 280, + 6054: 280, + 6055: 280, + 6056: 280, + 6057: 280, + 6058: 280, + 6059: 280, + 6060: 280, + 6061: 280, + 6062: 280, + 6063: 280, + 6064: 280, + 6065: 280, + 6066: 280, + 6067: 280, + 6068: 280, + 6069: 280, + 6070: 280, + 6071: 280, + 6072: 280, + 6073: 280, + 6074: 280, + 6075: 280, + 6076: 280, + 6077: 280, + 6078: 280, + 6079: 280, + 6080: 280, + 6081: 280, + 6082: 280, + 6083: 280, + 6084: 280, + 6085: 280, + 6086: 280, + 6087: 280, + 6088: 280, + 6089: 280, + 6090: 280, + 6091: 280, + 6092: 280, + 6093: 280, + 6094: 280, + 6095: 280, + 6096: 280, + 6097: 280, + 6098: 280, + 6099: 280, + 6100: 280, + 6101: 280, + 6102: 280, + 6103: 280, + 6104: 280, + 6105: 280, + 6106: 280, + 6107: 280, + 6108: 280, + 6109: 280, + 6110: 280, + 6111: 280, + 6112: 280, + 6113: 280, + 6114: 280, + 6115: 280, + 6116: 280, + 6117: 280, + 6118: 280, + 6119: 280, + 6120: 280, + 6121: 280, + 6122: 280, + 6123: 280, + 6124: 280, + 6125: 280, + 6126: 280, + 6127: 280, + 6128: 280, + 6129: 280, + 6130: 280, + 6131: 280, + 6132: 280, + 6133: 280, + 6134: 280, + 6135: 280, + 6136: 280, + 6137: 280, + 6138: 280, + 6139: 280, + 6140: 280, + 6141: 280, + 6142: 280, + 6143: 280, + 6144: 280, + 6145: 280, + 6146: 280, + 6147: 280, + 6148: 280, + 6149: 280, + 6150: 280, + 6151: 280, + 6152: 280, + 6153: 280, + 6154: 280, + 6155: 280, + 6156: 280, + 6157: 280, + 6158: 280, + 6159: 280, + 6160: 280, + 6161: 280, + 6162: 280, + 6163: 280, + 6164: 280, + 6165: 280, + 6166: 280, + 6167: 280, + 6168: 280, + 6169: 280, + 6170: 280, + 6171: 280, + 6172: 280, + 6173: 280, + 6174: 280, + 6175: 280, + 6176: 280, + 6177: 280, + 6178: 280, + 6179: 280, + 6180: 280, + 6181: 280, + 6182: 280, + 6183: 280, + 6184: 280, + 6185: 280, + 6186: 280, + 6187: 280, + 6188: 280, + 6189: 280, + 6190: 280, + 6191: 280, + 6192: 280, + 6193: 280, + 6194: 280, + 6195: 280, + 6196: 280, + 6197: 280, + 6198: 280, + 6199: 280, + 6200: 280, + 6201: 280, + 6202: 280, + 6203: 280, + 6204: 280, + 6205: 280, + 6206: 280, + 6207: 280, + 6208: 280, + 6209: 280, + 6210: 280, + 6211: 280, + 6212: 280, + 6213: 280, + 6214: 280, + 6215: 280, + 6216: 280, + 6217: 280, + 6218: 280, + 6219: 280, + 6220: 280, + 6221: 280, + 6222: 280, + 6223: 280, + 6224: 280, + 6225: 280, + 6226: 280, + 6227: 280, + 6228: 280, + 6229: 280, + 6230: 280, + 6231: 280, + 6232: 280, + 6233: 280, + 6234: 280, + 6235: 280, + 6236: 280, + 6237: 280, + 6238: 280, + 6239: 280, + 6240: 280, + 6241: 280, + 6242: 280, + 6243: 280, + 6244: 280, + 6245: 280, + 6246: 280, + 6247: 280, + 6248: 280, + 6249: 280, + 6250: 280, + 6251: 280, + 6252: 280, + 6253: 280, + 6254: 280, + 6255: 280, + 6256: 280, + 6257: 280, + 6258: 280, + 6259: 280, + 6260: 280, + 6261: 280, + 6262: 280, + 6263: 280, + 6264: 280, + 6265: 280, + 6266: 280, + 6267: 280, + 6268: 280, + 6269: 280, + 6270: 280, + 6271: 280, + 6272: 280, + 6273: 280, + 6274: 280, + 6275: 280, + 6276: 280, + 6277: 280, + 6278: 280, + 6279: 280, + 6280: 280, + 6281: 280, + 6282: 280, + 6283: 280, + 6284: 280, + 6285: 280, + 6286: 280, + 6287: 280, + 6288: 280, + 6289: 280, + 6290: 280, + 6291: 280, + 6292: 280, + 6293: 280, + 6294: 280, + 6295: 280, + 6296: 280, + 6297: 280, + 6298: 280, + 6299: 280, + 6300: 280, + 6301: 280, + 6302: 280, + 6303: 280, + 6304: 280, + 6305: 280, + 6306: 280, + 6307: 280, + 6308: 280, + 6309: 281, + 6310: 282, + 6311: 283, + 6312: 284, + 6313: 285, + 6314: 286, + 6315: 287, + 6316: 288, + 6317: 289, + 6318: 290, + 6319: 291, + 6320: 292, + 6321: 293, + 6322: 294, + 6323: 295, + 6324: 296, + 6325: 297, + 6326: 298, + 6327: 299, + 6328: 300, + 6329: 301, + 6330: 302, + 6331: 303, + 6332: 304, + 6333: 305, + 6334: 306, + 6335: 306, + 6336: 306, + 6337: 306, + 6338: 306, + 6339: 306, + 6340: 306, + 6341: 306, + 6342: 307, + 6343: 307, + 6344: 307, + 6345: 307, + 6346: 307, + 6347: 307, + 6348: 307, + 6349: 307, + 6350: 308, + 6351: 308, + 6352: 308, + 6353: 308, + 6354: 308, + 6355: 308, + 6356: 308, + 6357: 308, + 6358: 308, + 6359: 308, + 6360: 308, + 6361: 308, + 6362: 308, + 6363: 308, + 6364: 308, + 6365: 308, + 6366: 308, + 6367: 308, + 6368: 308, + 6369: 308, + 6370: 308, + 6371: 308, + 6372: 308, + 6373: 308, + 6374: 309, + 6375: 309, + 6376: 309, + 6377: 309, + 6378: 309, + 6379: 309, + 6380: 309, + 6381: 309, + 6382: 309, + 6383: 309, + 6384: 309, + 6385: 309, + 6386: 309, + 6387: 309, + 6388: 309, + 6389: 309, + 6390: 309, + 6391: 309, + 6392: 309, + 6393: 309, + 6394: 309, + 6395: 309, + 6396: 309, + 6397: 309, + 6398: 310, + 6399: 310, + 6400: 310, + 6401: 310, + 6402: 310, + 6403: 310, + 6404: 310, + 6405: 310, + 6406: 310, + 6407: 310, + 6408: 310, + 6409: 310, + 6410: 310, + 6411: 310, + 6412: 310, + 6413: 310, + 6414: 310, + 6415: 310, + 6416: 310, + 6417: 310, + 6418: 310, + 6419: 310, + 6420: 310, + 6421: 310, + 6422: 311, + 6423: 311, + 6424: 311, + 6425: 311, + 6426: 311, + 6427: 311, + 6428: 311, + 6429: 311, + 6430: 311, + 6431: 311, + 6432: 311, + 6433: 311, + 6434: 311, + 6435: 311, + 6436: 311, + 6437: 311, + 6438: 311, + 6439: 311, + 6440: 311, + 6441: 311, + 6442: 311, + 6443: 311, + 6444: 311, + 6445: 311, + 6446: 312, + 6447: 312, + 6448: 312, + 6449: 312, + 6450: 312, + 6451: 312, + 6452: 312, + 6453: 312, + 6454: 312, + 6455: 312, + 6456: 312, + 6457: 312, + 6458: 312, + 6459: 312, + 6460: 312, + 6461: 312, + 6462: 312, + 6463: 312, + 6464: 312, + 6465: 312, + 6466: 312, + 6467: 312, + 6468: 312, + 6469: 312, + 6470: 313, + 6471: 313, + 6472: 313, + 6473: 313, + 6474: 313, + 6475: 313, + 6476: 313, + 6477: 313, + 6478: 313, + 6479: 313, + 6480: 313, + 6481: 313, + 6482: 313, + 6483: 313, + 6484: 313, + 6485: 313, + 6486: 313, + 6487: 313, + 6488: 313, + 6489: 313, + 6490: 313, + 6491: 313, + 6492: 313, + 6493: 313, + 6494: 314, + 6495: 314, + 6496: 314, + 6497: 314, + 6498: 314, + 6499: 314, + 6500: 314, + 6501: 314, + 6502: 314, + 6503: 314, + 6504: 314, + 6505: 314, + 6506: 314, + 6507: 314, + 6508: 314, + 6509: 314, + 6510: 315, + 6511: 315, + 6512: 315, + 6513: 315, + 6514: 316, + 6515: 316, + 6516: 316, + 6517: 316, + 6518: 316, + 6519: 316, + 6520: 316, + 6521: 316, + 6522: 316, + 6523: 316, + 6524: 316, + 6525: 316, + 6526: 316, + 6527: 316, + 6528: 316, + 6529: 316, + 6530: 317, + 6531: 317, + 6532: 317, + 6533: 317, + 6534: 318, + 6535: 318, + 6536: 318, + 6537: 318, + 6538: 318, + 6539: 318, + 6540: 318, + 6541: 318, + 6542: 318, + 6543: 318, + 6544: 318, + 6545: 318, + 6546: 318, + 6547: 318, + 6548: 318, + 6549: 318, + 6550: 319, + 6551: 319, + 6552: 319, + 6553: 319, + 6554: 320, + 6555: 320, + 6556: 320, + 6557: 320, + 6558: 320, + 6559: 320, + 6560: 320, + 6561: 320, + 6562: 320, + 6563: 320, + 6564: 320, + 6565: 320, + 6566: 320, + 6567: 320, + 6568: 320, + 6569: 320, + 6570: 321, + 6571: 321, + 6572: 321, + 6573: 321, + 6574: 322, + 6575: 322, + 6576: 322, + 6577: 322, + 6578: 322, + 6579: 322, + 6580: 322, + 6581: 322, + 6582: 322, + 6583: 322, + 6584: 322, + 6585: 322, + 6586: 322, + 6587: 322, + 6588: 322, + 6589: 322, + 6590: 323, + 6591: 323, + 6592: 323, + 6593: 323, + 6594: 324, + 6595: 324, + 6596: 324, + 6597: 324, + 6598: 324, + 6599: 324, + 6600: 324, + 6601: 324, + 6602: 324, + 6603: 324, + 6604: 324, + 6605: 324, + 6606: 324, + 6607: 324, + 6608: 324, + 6609: 324, + 6610: 325, + 6611: 325, + 6612: 325, + 6613: 325, + 6614: 326, + 6615: 326, + 6616: 326, + 6617: 326, + 6618: 327, + 6619: 327, + 6620: 327, + 6621: 327, + 6622: 328, + 6623: 328, + 6624: 328, + 6625: 328, + 6626: 329, + 6627: 329, + 6628: 329, + 6629: 329, + 6630: 329, + 6631: 329, + 6632: 329, + 6633: 329, + 6634: 329, + 6635: 329, + 6636: 329, + 6637: 329, + 6638: 329, + 6639: 329, + 6640: 329, + 6641: 329, + 6642: 329, + 6643: 329, + 6644: 329, + 6645: 329, + 6646: 329, + 6647: 329, + 6648: 329, + 6649: 329, + 6650: 330, + 6651: 330, + 6652: 330, + 6653: 330, + 6654: 330, + 6655: 330, + 6656: 330, + 6657: 330, + 6658: 330, + 6659: 330, + 6660: 330, + 6661: 330, + 6662: 330, + 6663: 330, + 6664: 330, + 6665: 330, + 6666: 331, + 6667: 331, + 6668: 331, + 6669: 331, + 6670: 331, + 6671: 331, + 6672: 331, + 6673: 331, + 6674: 331, + 6675: 331, + 6676: 331, + 6677: 331, + 6678: 331, + 6679: 331, + 6680: 331, + 6681: 331, + 6682: 332, + 6683: 332, + 6684: 332, + 6685: 332, + 6686: 332, + 6687: 332, + 6688: 332, + 6689: 332, + 6690: 332, + 6691: 332, + 6692: 332, + 6693: 332, + 6694: 332, + 6695: 332, + 6696: 332, + 6697: 332, + 6698: 333, + 6699: 333, + 6700: 333, + 6701: 333, + 6702: 333, + 6703: 333, + 6704: 333, + 6705: 333, + 6706: 333, + 6707: 333, + 6708: 333, + 6709: 333, + 6710: 333, + 6711: 333, + 6712: 333, + 6713: 333, + 6714: 333, + 6715: 333, + 6716: 333, + 6717: 333, + 6718: 333, + 6719: 333, + 6720: 333, + 6721: 333, + 6722: 333, + 6723: 333, + 6724: 333, + 6725: 333, + 6726: 333, + 6727: 333, + 6728: 333, + 6729: 333, + 6730: 334, + 6731: 335, + 6732: 336, + 6733: 336, + 6734: 336, + 6735: 336, + 6736: 336, + 6737: 336, + 6738: 336, + 6739: 336, + 6740: 336, + 6741: 336, + 6742: 337, + 6743: 338, + 6744: 339, + 6745: 339, + 6746: 339, + 6747: 340, + 6748: 340, + 6749: 340, + 6750: 340, + 6751: 340, + 6752: 340, + 6753: 340, + 6754: 340, + 6755: 340, + 6756: 340, + 6757: 340, + 6758: 340, + 6759: 340, + 6760: 340, + 6761: 340, + 6762: 340, + 6763: 340, + 6764: 340, + 6765: 340, + 6766: 340, + 6767: 340, + 6768: 340, + 6769: 340, + 6770: 340, + 6771: 340, + 6772: 340, + 6773: 340, + 6774: 340, + 6775: 340, + 6776: 340, + 6777: 340, + 6778: 340, + 6779: 340, + 6780: 340, + 6781: 340, + 6782: 340, + 6783: 340, + 6784: 340, + 6785: 340, + 6786: 340, + 6787: 340, + 6788: 340, + 6789: 340, + 6790: 340, + 6791: 340, + 6792: 340, + 6793: 340, + 6794: 340, + 6795: 340, + 6796: 340, + 6797: 340, + 6798: 340, + 6799: 340, + 6800: 340, + 6801: 340, + 6802: 340, + 6803: 340, + 6804: 340, + 6805: 340, + 6806: 340, + 6807: 340, + 6808: 340, + 6809: 340, + 6810: 340, + 6811: 340, + 6812: 340, + 6813: 340, + 6814: 340, + 6815: 340, + 6816: 340, + 6817: 340, + 6818: 340, + 6819: 340, + 6820: 340, + 6821: 340, + 6822: 340, + 6823: 340, + 6824: 340, + 6825: 340, + 6826: 340, + 6827: 341, + 6828: 341, + 6829: 341, + 6830: 341, + 6831: 341, + 6832: 341, + 6833: 341, + 6834: 341, + 6835: 341, + 6836: 341, + 6837: 341, + 6838: 341, + 6839: 342, + 6840: 342, + 6841: 342, + 6842: 342, + 6843: 342, + 6844: 342, + 6845: 342, + 6846: 342, + 6847: 342, + 6848: 342, + 6849: 342, + 6850: 342, + 6851: 343, + 6852: 344, + 6853: 345, + 6854: 346, + 6855: 347, + 6856: 348, + 6857: 349, + 6858: 350, + 6859: 351, + 6860: 352, + 6861: 353, + 6862: 354, + 6863: 355, + 6864: 356, + 6865: 357, + 6866: 358, + 6867: 359, + 6868: 359, + 6869: 359, + 6870: 359, + 6871: 359, + 6872: 359, + 6873: 359, + 6874: 359, + 6875: 359, + 6876: 359, + 6877: 359, + 6878: 359, + 6879: 359, + 6880: 359, + 6881: 359, + 6882: 359, + 6883: 359, + 6884: 359, + 6885: 359, + 6886: 359, + 6887: 359, + 6888: 359, + 6889: 359, + 6890: 359, + 6891: 359, + 6892: 359, + 6893: 359, + 6894: 359, + 6895: 359, + 6896: 359, + 6897: 359, + 6898: 359, + 6899: 360, + 6900: 360, + 6901: 360, + 6902: 360, + 6903: 360, + 6904: 360, + 6905: 360, + 6906: 360, + 6907: 360, + 6908: 360, + 6909: 360, + 6910: 360, + 6911: 360, + 6912: 360, + 6913: 360, + 6914: 360, + 6915: 360, + 6916: 360, + 6917: 360, + 6918: 360, + 6919: 360, + 6920: 360, + 6921: 360, + 6922: 360, + 6923: 360, + 6924: 360, + 6925: 360, + 6926: 360, + 6927: 360, + 6928: 360, + 6929: 360, + 6930: 360, + 6931: 361, + 6932: 361, + 6933: 361, + 6934: 361, + 6935: 361, + 6936: 361, + 6937: 361, + 6938: 361, + 6939: 361, + 6940: 361, + 6941: 361, + 6942: 361, + 6943: 361, + 6944: 361, + 6945: 361, + 6946: 361, + 6947: 361, + 6948: 361, + 6949: 361, + 6950: 361, + 6951: 361, + 6952: 361, + 6953: 361, + 6954: 361, + 6955: 361, + 6956: 361, + 6957: 361, + 6958: 361, + 6959: 361, + 6960: 361, + 6961: 361, + 6962: 361, + 6963: 362, + 6964: 362, + 6965: 362, + 6966: 362, + 6967: 362, + 6968: 362, + 6969: 362, + 6970: 362, + 6971: 362, + 6972: 362, + 6973: 362, + 6974: 362, + 6975: 362, + 6976: 362, + 6977: 362, + 6978: 362, + 6979: 362, + 6980: 362, + 6981: 362, + 6982: 362, + 6983: 362, + 6984: 362, + 6985: 362, + 6986: 362, + 6987: 362, + 6988: 362, + 6989: 362, + 6990: 362, + 6991: 362, + 6992: 362, + 6993: 362, + 6994: 362, + 6995: 363, + 6996: 363, + 6997: 363, + 6998: 363, + 6999: 363, + 7000: 363, + 7001: 363, + 7002: 363, + 7003: 363, + 7004: 363, + 7005: 363, + 7006: 363, + 7007: 363, + 7008: 363, + 7009: 363, + 7010: 363, + 7011: 363, + 7012: 363, + 7013: 363, + 7014: 363, + 7015: 363, + 7016: 363, + 7017: 363, + 7018: 363, + 7019: 363, + 7020: 363, + 7021: 363, + 7022: 363, + 7023: 363, + 7024: 363, + 7025: 363, + 7026: 363, + 7027: 364, + 7028: 364, + 7029: 364, + 7030: 364, + 7031: 364, + 7032: 364, + 7033: 364, + 7034: 364, + 7035: 364, + 7036: 364, + 7037: 364, + 7038: 364, + 7039: 364, + 7040: 364, + 7041: 364, + 7042: 364, + 7043: 364, + 7044: 364, + 7045: 364, + 7046: 364, + 7047: 364, + 7048: 364, + 7049: 364, + 7050: 364, + 7051: 364, + 7052: 364, + 7053: 364, + 7054: 364, + 7055: 364, + 7056: 364, + 7057: 364, + 7058: 364, + 7059: 365, + 7060: 365, + 7061: 365, + 7062: 365, + 7063: 365, + 7064: 365, + 7065: 365, + 7066: 365, + 7067: 365, + 7068: 365, + 7069: 365, + 7070: 365, + 7071: 365, + 7072: 365, + 7073: 365, + 7074: 365, + 7075: 365, + 7076: 365, + 7077: 365, + 7078: 365, + 7079: 365, + 7080: 365, + 7081: 365, + 7082: 365, + 7083: 365, + 7084: 365, + 7085: 365, + 7086: 365, + 7087: 365, + 7088: 365, + 7089: 365, + 7090: 365, + 7091: 366, + 7092: 366, + 7093: 366, + 7094: 366, + 7095: 366, + 7096: 366, + 7097: 366, + 7098: 366, + 7099: 366, + 7100: 366, + 7101: 366, + 7102: 366, + 7103: 366, + 7104: 366, + 7105: 366, + 7106: 366, + 7107: 366, + 7108: 366, + 7109: 366, + 7110: 366, + 7111: 366, + 7112: 366, + 7113: 366, + 7114: 366, + 7115: 366, + 7116: 366, + 7117: 366, + 7118: 366, + 7119: 366, + 7120: 366, + 7121: 366, + 7122: 366, + 7123: 367, + 7124: 367, + 7125: 367, + 7126: 367, + 7127: 367, + 7128: 367, + 7129: 367, + 7130: 367, + 7131: 367, + 7132: 367, + 7133: 367, + 7134: 367, + 7135: 367, + 7136: 367, + 7137: 367, + 7138: 367, + 7139: 367, + 7140: 367, + 7141: 367, + 7142: 367, + 7143: 367, + 7144: 367, + 7145: 367, + 7146: 367, + 7147: 367, + 7148: 367, + 7149: 367, + 7150: 367, + 7151: 367, + 7152: 367, + 7153: 367, + 7154: 367, + 7155: 368, + 7156: 368, + 7157: 368, + 7158: 368, + 7159: 368, + 7160: 368, + 7161: 368, + 7162: 368, + 7163: 368, + 7164: 368, + 7165: 368, + 7166: 368, + 7167: 368, + 7168: 368, + 7169: 368, + 7170: 368, + 7171: 368, + 7172: 368, + 7173: 368, + 7174: 368, + 7175: 368, + 7176: 368, + 7177: 368, + 7178: 368, + 7179: 368, + 7180: 368, + 7181: 368, + 7182: 368, + 7183: 368, + 7184: 368, + 7185: 368, + 7186: 368, + 7187: 369, + 7188: 369, + 7189: 369, + 7190: 369, + 7191: 369, + 7192: 369, + 7193: 369, + 7194: 369, + 7195: 369, + 7196: 369, + 7197: 369, + 7198: 369, + 7199: 369, + 7200: 369, + 7201: 369, + 7202: 369, + 7203: 369, + 7204: 369, + 7205: 369, + 7206: 369, + 7207: 369, + 7208: 369, + 7209: 369, + 7210: 369, + 7211: 369, + 7212: 369, + 7213: 369, + 7214: 369, + 7215: 369, + 7216: 369, + 7217: 369, + 7218: 369, + 7219: 370, + 7220: 370, + 7221: 370, + 7222: 370, + 7223: 370, + 7224: 370, + 7225: 370, + 7226: 370, + 7227: 370, + 7228: 370, + 7229: 370, + 7230: 370, + 7231: 370, + 7232: 370, + 7233: 370, + 7234: 370, + 7235: 370, + 7236: 370, + 7237: 370, + 7238: 370, + 7239: 370, + 7240: 370, + 7241: 370, + 7242: 370, + 7243: 370, + 7244: 370, + 7245: 370, + 7246: 370, + 7247: 370, + 7248: 370, + 7249: 370, + 7250: 370, + 7251: 371, + 7252: 371, + 7253: 371, + 7254: 371, + 7255: 371, + 7256: 371, + 7257: 371, + 7258: 371, + 7259: 371, + 7260: 371, + 7261: 371, + 7262: 371, + 7263: 371, + 7264: 371, + 7265: 371, + 7266: 371, + 7267: 371, + 7268: 371, + 7269: 371, + 7270: 371, + 7271: 371, + 7272: 371, + 7273: 371, + 7274: 371, + 7275: 371, + 7276: 371, + 7277: 371, + 7278: 371, + 7279: 371, + 7280: 371, + 7281: 371, + 7282: 371, + 7283: 372, + 7284: 372, + 7285: 372, + 7286: 372, + 7287: 372, + 7288: 372, + 7289: 372, + 7290: 372, + 7291: 372, + 7292: 372, + 7293: 372, + 7294: 372, + 7295: 372, + 7296: 372, + 7297: 372, + 7298: 372, + 7299: 372, + 7300: 372, + 7301: 372, + 7302: 372, + 7303: 372, + 7304: 372, + 7305: 372, + 7306: 372, + 7307: 372, + 7308: 372, + 7309: 372, + 7310: 372, + 7311: 372, + 7312: 372, + 7313: 372, + 7314: 372, + 7315: 373, + 7316: 373, + 7317: 373, + 7318: 373, + 7319: 373, + 7320: 373, + 7321: 373, + 7322: 373, + 7323: 373, + 7324: 373, + 7325: 373, + 7326: 373, + 7327: 373, + 7328: 373, + 7329: 373, + 7330: 373, + 7331: 373, + 7332: 373, + 7333: 373, + 7334: 373, + 7335: 373, + 7336: 373, + 7337: 373, + 7338: 373, + 7339: 373, + 7340: 373, + 7341: 373, + 7342: 373, + 7343: 373, + 7344: 373, + 7345: 373, + 7346: 373, + 7347: 374, + 7348: 374, + 7349: 374, + 7350: 374, + 7351: 374, + 7352: 374, + 7353: 374, + 7354: 374, + 7355: 374, + 7356: 374, + 7357: 374, + 7358: 374, + 7359: 374, + 7360: 374, + 7361: 374, + 7362: 374, + 7363: 374, + 7364: 374, + 7365: 374, + 7366: 374, + 7367: 374, + 7368: 374, + 7369: 374, + 7370: 374, + 7371: 374, + 7372: 374, + 7373: 374, + 7374: 374, + 7375: 374, + 7376: 374, + 7377: 374, + 7378: 374, + 7379: 375, + 7380: 375, + 7381: 375, + 7382: 375, + 7383: 375, + 7384: 375, + 7385: 375, + 7386: 375, + 7387: 375, + 7388: 375, + 7389: 375, + 7390: 375, + 7391: 375, + 7392: 375, + 7393: 375, + 7394: 375, + 7395: 375, + 7396: 375, + 7397: 375, + 7398: 375, + 7399: 375, + 7400: 375, + 7401: 375, + 7402: 375, + 7403: 375, + 7404: 375, + 7405: 375, + 7406: 375, + 7407: 375, + 7408: 375, + 7409: 375, + 7410: 375, + 7411: 375, + 7412: 375, + 7413: 375, + 7414: 375, + 7415: 375, + 7416: 375, + 7417: 375, + 7418: 375, + 7419: 375, + 7420: 375, + 7421: 375, + 7422: 375, + 7423: 375, + 7424: 375, + 7425: 375, + 7426: 375, + 7427: 375, + 7428: 375, + 7429: 375, + 7430: 375, + 7431: 375, + 7432: 375, + 7433: 375, + 7434: 375, + 7435: 375, + 7436: 375, + 7437: 375, + 7438: 375, + 7439: 375, + 7440: 375, + 7441: 375, + 7442: 375, + 7443: 375, + 7444: 375, + 7445: 375, + 7446: 375, + 7447: 375, + 7448: 375, + 7449: 375, + 7450: 375, + 7451: 375, + 7452: 375, + 7453: 375, + 7454: 375, + 7455: 375, + 7456: 375, + 7457: 375, + 7458: 375, + 7459: 376, + 7460: 376, + 7461: 376, + 7462: 376, + 7463: 376, + 7464: 376, + 7465: 376, + 7466: 376, + 7467: 376, + 7468: 376, + 7469: 376, + 7470: 376, + 7471: 376, + 7472: 376, + 7473: 376, + 7474: 376, + 7475: 376, + 7476: 376, + 7477: 376, + 7478: 376, + 7479: 376, + 7480: 376, + 7481: 376, + 7482: 376, + 7483: 376, + 7484: 376, + 7485: 376, + 7486: 376, + 7487: 376, + 7488: 376, + 7489: 376, + 7490: 376, + 7491: 376, + 7492: 376, + 7493: 376, + 7494: 376, + 7495: 376, + 7496: 376, + 7497: 376, + 7498: 376, + 7499: 376, + 7500: 376, + 7501: 376, + 7502: 376, + 7503: 376, + 7504: 376, + 7505: 376, + 7506: 376, + 7507: 376, + 7508: 376, + 7509: 376, + 7510: 376, + 7511: 376, + 7512: 376, + 7513: 376, + 7514: 376, + 7515: 376, + 7516: 376, + 7517: 376, + 7518: 376, + 7519: 376, + 7520: 376, + 7521: 376, + 7522: 376, + 7523: 376, + 7524: 376, + 7525: 376, + 7526: 376, + 7527: 376, + 7528: 376, + 7529: 376, + 7530: 376, + 7531: 376, + 7532: 376, + 7533: 376, + 7534: 376, + 7535: 376, + 7536: 376, + 7537: 376, + 7538: 376, + 7539: 377, + 7540: 378, + 7541: 379, + 7542: 379, + 7543: 379, + 7544: 379, + 7545: 379, + 7546: 379, + 7547: 379, + 7548: 379, + 7549: 379, + 7550: 379, + 7551: 379, + 7552: 379, + 7553: 379, + 7554: 379, + 7555: 379, + 7556: 379, + 7557: 379, + 7558: 379, + 7559: 379, + 7560: 379, + 7561: 379, + 7562: 379, + 7563: 379, + 7564: 379, + 7565: 379, + 7566: 379, + 7567: 379, + 7568: 379, + 7569: 379, + 7570: 379, + 7571: 379, + 7572: 379, + 7573: 379, + 7574: 379, + 7575: 379, + 7576: 379, + 7577: 379, + 7578: 379, + 7579: 379, + 7580: 379, + 7581: 379, + 7582: 379, + 7583: 379, + 7584: 379, + 7585: 379, + 7586: 379, + 7587: 379, + 7588: 379, + 7589: 379, + 7590: 379, + 7591: 379, + 7592: 379, + 7593: 379, + 7594: 379, + 7595: 379, + 7596: 379, + 7597: 379, + 7598: 379, + 7599: 379, + 7600: 379, + 7601: 379, + 7602: 379, + 7603: 379, + 7604: 379, + 7605: 380, + 7606: 381, + 7607: 382, + 7608: 383, + 7609: 383, + 7610: 383, + 7611: 383, + 7612: 383, + 7613: 383, + 7614: 383, + 7615: 383, + 7616: 383, + 7617: 383, + 7618: 383, + 7619: 383, + 7620: 383, + 7621: 383, + 7622: 383, + 7623: 383, + 7624: 383, + 7625: 383, + 7626: 383, + 7627: 383, + 7628: 383, + 7629: 383, + 7630: 383, + 7631: 383, + 7632: 383, + 7633: 383, + 7634: 383, + 7635: 383, + 7636: 383, + 7637: 383, + 7638: 383, + 7639: 383, + 7640: 383, + 7641: 383, + 7642: 383, + 7643: 383, + 7644: 383, + 7645: 383, + 7646: 383, + 7647: 383, + 7648: 383, + 7649: 383, + 7650: 383, + 7651: 383, + 7652: 383, + 7653: 383, + 7654: 383, + 7655: 383, + 7656: 383, + 7657: 383, + 7658: 383, + 7659: 383, + 7660: 383, + 7661: 383, + 7662: 383, + 7663: 383, + 7664: 383, + 7665: 383, + 7666: 383, + 7667: 383, + 7668: 383, + 7669: 383, + 7670: 383, + 7671: 383, + 7672: 383, + 7673: 383, + 7674: 383, + 7675: 383, + 7676: 383, + 7677: 383, + 7678: 383, + 7679: 383, + 7680: 383, + 7681: 383, + 7682: 383, + 7683: 383, + 7684: 383, + 7685: 383, + 7686: 383, + 7687: 383, + 7688: 384, + 7689: 384, + 7690: 384, + 7691: 384, + 7692: 384, + 7693: 384, + 7694: 384, + 7695: 384, + 7696: 384, + 7697: 384, + 7698: 384, + 7699: 384, + 7700: 384, + 7701: 384, + 7702: 384, + 7703: 384, + 7704: 384, + 7705: 384, + 7706: 384, + 7707: 384, + 7708: 384, + 7709: 384, + 7710: 384, + 7711: 384, + 7712: 384, + 7713: 384, + 7714: 384, + 7715: 384, + 7716: 384, + 7717: 384, + 7718: 384, + 7719: 384, + 7720: 384, + 7721: 384, + 7722: 384, + 7723: 384, + 7724: 384, + 7725: 384, + 7726: 384, + 7727: 384, + 7728: 384, + 7729: 384, + 7730: 384, + 7731: 384, + 7732: 384, + 7733: 384, + 7734: 384, + 7735: 384, + 7736: 384, + 7737: 384, + 7738: 384, + 7739: 384, + 7740: 384, + 7741: 384, + 7742: 384, + 7743: 384, + 7744: 384, + 7745: 384, + 7746: 384, + 7747: 384, + 7748: 384, + 7749: 384, + 7750: 384, + 7751: 384, + 7752: 384, + 7753: 384, + 7754: 384, + 7755: 384, + 7756: 384, + 7757: 384, + 7758: 384, + 7759: 384, + 7760: 384, + 7761: 384, + 7762: 384, + 7763: 384, + 7764: 384, + 7765: 384, + 7766: 384, + 7767: 384, + 7768: 385, + 7769: 385, + 7770: 385, + 7771: 385, + 7772: 385, + 7773: 385, + 7774: 385, + 7775: 385, + 7776: 385, + 7777: 385, + 7778: 385, + 7779: 385, + 7780: 385, + 7781: 385, + 7782: 385, + 7783: 385, + 7784: 385, + 7785: 385, + 7786: 385, + 7787: 385, + 7788: 385, + 7789: 385, + 7790: 385, + 7791: 385, + 7792: 385, + 7793: 385, + 7794: 385, + 7795: 385, + 7796: 385, + 7797: 385, + 7798: 385, + 7799: 385, + 7800: 385, + 7801: 385, + 7802: 385, + 7803: 385, + 7804: 385, + 7805: 385, + 7806: 385, + 7807: 385, + 7808: 385, + 7809: 385, + 7810: 385, + 7811: 385, + 7812: 385, + 7813: 385, + 7814: 385, + 7815: 385, + 7816: 385, + 7817: 385, + 7818: 385, + 7819: 385, + 7820: 385, + 7821: 385, + 7822: 385, + 7823: 385, + 7824: 385, + 7825: 385, + 7826: 385, + 7827: 385, + 7828: 385, + 7829: 385, + 7830: 385, + 7831: 385, + 7832: 385, + 7833: 385, + 7834: 385, + 7835: 385, + 7836: 385, + 7837: 385, + 7838: 385, + 7839: 385, + 7840: 385, + 7841: 385, + 7842: 385, + 7843: 385, + 7844: 385, + 7845: 385, + 7846: 385, + 7847: 385, + 7848: 386, + 7849: 386, + 7850: 386, + 7851: 386, + 7852: 386, + 7853: 386, + 7854: 387, + 7855: 387, + 7856: 387, + 7857: 387, + 7858: 387, + 7859: 387, + 7860: 388, + 7861: 388, + 7862: 388, + 7863: 388, + 7864: 388, + 7865: 388, + 7866: 389, + 7867: 390, + 7868: 390, + 7869: 390, + 7870: 391, + 7871: 392, + 7872: 393, + 7873: 394, + 7874: 395, + 7875: 396, + 7876: 397, + 7877: 398, + 7878: 399, + 7879: 400, + 7880: 401, + 7881: 402, + 7882: 403, + 7883: 404, + 7884: 405, + 7885: 406, + 7886: 407, + 7887: 408, + 7888: 409, + 7889: 410, + 7890: 410, + 7891: 411, + 7892: 411, + 7893: 412, + 7894: 412, + 7895: 413, + 7896: 413, + 7897: 414, + 7898: 414, + 7899: 415, + 7900: 415, + 7901: 416, + 7902: 416, + 7903: 416, + 7904: 416, + 7905: 416, + 7906: 416, + 7907: 416, + 7908: 416, + 7909: 416, + 7910: 416, + 7911: 416, + 7912: 416, + 7913: 416, + 7914: 416, + 7915: 416, + 7916: 416, + 7917: 417, + 7918: 417, + 7919: 417, + 7920: 417, + 7921: 417, + 7922: 417, + 7923: 417, + 7924: 417, + 7925: 417, + 7926: 417, + 7927: 417, + 7928: 417, + 7929: 417, + 7930: 417, + 7931: 417, + 7932: 417, + 7933: 418, + 7934: 418, + 7935: 418, + 7936: 418, + 7937: 418, + 7938: 418, + 7939: 418, + 7940: 418, + 7941: 418, + 7942: 418, + 7943: 418, + 7944: 418, + 7945: 418, + 7946: 418, + 7947: 418, + 7948: 418, + 7949: 419, + 7950: 419, + 7951: 419, + 7952: 419, + 7953: 419, + 7954: 419, + 7955: 419, + 7956: 419, + 7957: 419, + 7958: 419, + 7959: 419, + 7960: 419, + 7961: 419, + 7962: 419, + 7963: 419, + 7964: 419, + 7965: 420, + 7966: 420, + 7967: 420, + 7968: 420, + 7969: 420, + 7970: 420, + 7971: 420, + 7972: 420, + 7973: 420, + 7974: 420, + 7975: 420, + 7976: 420, + 7977: 420, + 7978: 420, + 7979: 420, + 7980: 420, + 7981: 421, + 7982: 421, + 7983: 421, + 7984: 421, + 7985: 421, + 7986: 421, + 7987: 421, + 7988: 421, + 7989: 421, + 7990: 421, + 7991: 421, + 7992: 421, + 7993: 421, + 7994: 421, + 7995: 421, + 7996: 421, + 7997: 422, + 7998: 422, + 7999: 422, + 8000: 422, + 8001: 422, + 8002: 422, + 8003: 422, + 8004: 422, + 8005: 422, + 8006: 422, + 8007: 422, + 8008: 422, + 8009: 422, + 8010: 422, + 8011: 422, + 8012: 422, + 8013: 423, + 8014: 423, + 8015: 423, + 8016: 423, + 8017: 423, + 8018: 423, + 8019: 423, + 8020: 423, + 8021: 423, + 8022: 423, + 8023: 423, + 8024: 423, + 8025: 423, + 8026: 423, + 8027: 423, + 8028: 423, + 8029: 424, + 8030: 424, + 8031: 424, + 8032: 424, + 8033: 424, + 8034: 424, + 8035: 424, + 8036: 424, + 8037: 424, + 8038: 424, + 8039: 424, + 8040: 424, + 8041: 424, + 8042: 424, + 8043: 424, + 8044: 424, + 8045: 425, + 8046: 425, + 8047: 425, + 8048: 425, + 8049: 425, + 8050: 425, + 8051: 425, + 8052: 425, + 8053: 425, + 8054: 425, + 8055: 425, + 8056: 425, + 8057: 425, + 8058: 425, + 8059: 425, + 8060: 425, + 8061: 426, + 8062: 426, + 8063: 426, + 8064: 426, + 8065: 426, + 8066: 426, + 8067: 426, + 8068: 426, + 8069: 426, + 8070: 426, + 8071: 426, + 8072: 426, + 8073: 426, + 8074: 426, + 8075: 426, + 8076: 426, + 8077: 427, + 8078: 427, + 8079: 427, + 8080: 427, + 8081: 427, + 8082: 427, + 8083: 427, + 8084: 427, + 8085: 427, + 8086: 427, + 8087: 427, + 8088: 427, + 8089: 427, + 8090: 427, + 8091: 427, + 8092: 427, + 8093: 428, + 8094: 428, + 8095: 428, + 8096: 428, + 8097: 428, + 8098: 428, + 8099: 428, + 8100: 428, + 8101: 428, + 8102: 428, + 8103: 428, + 8104: 428, + 8105: 428, + 8106: 428, + 8107: 428, + 8108: 428, + 8109: 429, + 8110: 429, + 8111: 429, + 8112: 429, + 8113: 429, + 8114: 429, + 8115: 429, + 8116: 429, + 8117: 429, + 8118: 429, + 8119: 429, + 8120: 429, + 8121: 429, + 8122: 429, + 8123: 429, + 8124: 429, + 8125: 430, + 8126: 430, + 8127: 430, + 8128: 430, + 8129: 430, + 8130: 430, + 8131: 430, + 8132: 430, + 8133: 430, + 8134: 430, + 8135: 430, + 8136: 430, + 8137: 430, + 8138: 430, + 8139: 430, + 8140: 430, + 8141: 431, + 8142: 431, + 8143: 431, + 8144: 431, + 8145: 431, + 8146: 431, + 8147: 431, + 8148: 431, + 8149: 431, + 8150: 431, + 8151: 431, + 8152: 431, + 8153: 431, + 8154: 431, + 8155: 431, + 8156: 431, + 8157: 432, + 8158: 432, + 8159: 432, + 8160: 432, + 8161: 433, + 8162: 433, + 8163: 433, + 8164: 433, + 8165: 434, + 8166: 434, + 8167: 434, + 8168: 434, + 8169: 435, + 8170: 435, + 8171: 435, + 8172: 435, + 8173: 436, + 8174: 436, + 8175: 436, + 8176: 436, + 8177: 437, + 8178: 437, + 8179: 437, + 8180: 437, + 8181: 438, + 8182: 438, + 8183: 438, + 8184: 438, + 8185: 439, + 8186: 439, + 8187: 439, + 8188: 439, + 8189: 440, + 8190: 440, + 8191: 440, + 8192: 440, + 8193: 441, + 8194: 441, + 8195: 441, + 8196: 441, + 8197: 442, + 8198: 442, + 8199: 442, + 8200: 442, + 8201: 443, + 8202: 443, + 8203: 443, + 8204: 443, + 8205: 444, + 8206: 444, + 8207: 444, + 8208: 444, + 8209: 445, + 8210: 445, + 8211: 445, + 8212: 445, + 8213: 446, + 8214: 446, + 8215: 446, + 8216: 446, + 8217: 447, + 8218: 447, + 8219: 447, + 8220: 447, + 8221: 448, + 8222: 449, + 8223: 450, + 8224: 451, + 8225: 451, + 8226: 451, + 8227: 451, + 8228: 451, + 8229: 451, + 8230: 451, + 8231: 451, + 8232: 451, + 8233: 451, + 8234: 451, + 8235: 451, + 8236: 451, + 8237: 451, + 8238: 451, + 8239: 451, + 8240: 451, + 8241: 451, + 8242: 451, + 8243: 451, + 8244: 451, + 8245: 451, + 8246: 451, + 8247: 451, + 8248: 451, + 8249: 451, + 8250: 451, + 8251: 451, + 8252: 451, + 8253: 451, + 8254: 451, + 8255: 451, + 8256: 451, + 8257: 451, + 8258: 451, + 8259: 451, + 8260: 451, + 8261: 451, + 8262: 451, + 8263: 451, + 8264: 451, + 8265: 451, + 8266: 451, + 8267: 451, + 8268: 451, + 8269: 451, + 8270: 451, + 8271: 451, + 8272: 451, + 8273: 451, + 8274: 451, + 8275: 451, + 8276: 451, + 8277: 451, + 8278: 451, + 8279: 451, + 8280: 451, + 8281: 451, + 8282: 451, + 8283: 451, + 8284: 451, + 8285: 451, + 8286: 451, + 8287: 451, + 8288: 451, + 8289: 451, + 8290: 451, + 8291: 451, + 8292: 451, + 8293: 451, + 8294: 451, + 8295: 451, + 8296: 451, + 8297: 451, + 8298: 451, + 8299: 451, + 8300: 451, + 8301: 451, + 8302: 451, + 8303: 451, + 8304: 452, + 8305: 452, + 8306: 452, + 8307: 452, + 8308: 452, + 8309: 452, + 8310: 453, + 8311: 453, + 8312: 453, + 8313: 453, + 8314: 453, + 8315: 453, + 8316: 454, + 8317: 454, + 8318: 454, + 8319: 454, + 8320: 454, + 8321: 454, + 8322: 455, + 8323: 455, + 8324: 455, + 8325: 455, + 8326: 455, + 8327: 455, + 8328: 456, + 8329: 456, + 8330: 456, + 8331: 456, + 8332: 456, + 8333: 456, + 8334: 457, + 8335: 457, + 8336: 457, + 8337: 457, + 8338: 457, + 8339: 457, + 8340: 458, + 8341: 458, + 8342: 458, + 8343: 458, + 8344: 458, + 8345: 458, + 8346: 459, + 8347: 459, + 8348: 459, + 8349: 459, + 8350: 459, + 8351: 459, + 8352: 460, + 8353: 460, + 8354: 460, + 8355: 460, + 8356: 460, + 8357: 460, + 8358: 461, + 8359: 461, + 8360: 461, + 8361: 461, + 8362: 461, + 8363: 461, + 8364: 462, + 8365: 462, + 8366: 462, + 8367: 462, + 8368: 462, + 8369: 462, + 8370: 463, + 8371: 463, + 8372: 463, + 8373: 463, + 8374: 463, + 8375: 463, + 8376: 464, + 8377: 464, + 8378: 464, + 8379: 464, + 8380: 464, + 8381: 464, + 8382: 465, + 8383: 465, + 8384: 465, + 8385: 465, + 8386: 465, + 8387: 465, + 8388: 466, + 8389: 466, + 8390: 466, + 8391: 466, + 8392: 466, + 8393: 466, + 8394: 467, + 8395: 467, + 8396: 467, + 8397: 467, + 8398: 467, + 8399: 467, + 8400: 468, + 8401: 468, + 8402: 468, + 8403: 468, + 8404: 468, + 8405: 468, + 8406: 469, + 8407: 469, + 8408: 469, + 8409: 469, + 8410: 469, + 8411: 469, + 8412: 470, + 8413: 470, + 8414: 470, + 8415: 470, + 8416: 470, + 8417: 470, + 8418: 471, + 8419: 472, + 8420: 473, + 8421: 474, + 8422: 475, + 8423: 475, + 8424: 475, + 8425: 475, + 8426: 475, + 8427: 475, + 8428: 475, + 8429: 475, + 8430: 475, + 8431: 475, + 8432: 475, + 8433: 475, + 8434: 475, + 8435: 475, + 8436: 475, + 8437: 475, + 8438: 475, + 8439: 475, + 8440: 475, + 8441: 475, + 8442: 475, + 8443: 475, + 8444: 475, + 8445: 475, + 8446: 475, + 8447: 475, + 8448: 475, + 8449: 475, + 8450: 475, + 8451: 475, + 8452: 475, + 8453: 475, + 8454: 476, + 8455: 476, + 8456: 476, + 8457: 476, + 8458: 476, + 8459: 476, + 8460: 476, + 8461: 476, + 8462: 476, + 8463: 476, + 8464: 476, + 8465: 476, + 8466: 476, + 8467: 476, + 8468: 476, + 8469: 476, + 8470: 476, + 8471: 476, + 8472: 476, + 8473: 476, + 8474: 476, + 8475: 476, + 8476: 476, + 8477: 476, + 8478: 476, + 8479: 476, + 8480: 476, + 8481: 476, + 8482: 476, + 8483: 476, + 8484: 476, + 8485: 476, + 8486: 477, + 8487: 477, + 8488: 477, + 8489: 477, + 8490: 477, + 8491: 477, + 8492: 477, + 8493: 477, + 8494: 477, + 8495: 477, + 8496: 477, + 8497: 477, + 8498: 477, + 8499: 477, + 8500: 477, + 8501: 477, + 8502: 477, + 8503: 477, + 8504: 477, + 8505: 477, + 8506: 477, + 8507: 477, + 8508: 477, + 8509: 477, + 8510: 477, + 8511: 477, + 8512: 477, + 8513: 477, + 8514: 477, + 8515: 477, + 8516: 477, + 8517: 477, + 8518: 478, + 8519: 478, + 8520: 478, + 8521: 478, + 8522: 478, + 8523: 478, + 8524: 478, + 8525: 478, + 8526: 478, + 8527: 478, + 8528: 478, + 8529: 478, + 8530: 478, + 8531: 478, + 8532: 478, + 8533: 478, + 8534: 478, + 8535: 478, + 8536: 478, + 8537: 478, + 8538: 478, + 8539: 478, + 8540: 478, + 8541: 478, + 8542: 478, + 8543: 478, + 8544: 478, + 8545: 478, + 8546: 478, + 8547: 478, + 8548: 478, + 8549: 478, + 8550: 479, + 8551: 479, + 8552: 479, + 8553: 479, + 8554: 479, + 8555: 479, + 8556: 479, + 8557: 479, + 8558: 479, + 8559: 479, + 8560: 479, + 8561: 479, + 8562: 479, + 8563: 479, + 8564: 479, + 8565: 479, + 8566: 479, + 8567: 479, + 8568: 479, + 8569: 479, + 8570: 479, + 8571: 479, + 8572: 479, + 8573: 479, + 8574: 479, + 8575: 479, + 8576: 479, + 8577: 479, + 8578: 479, + 8579: 479, + 8580: 479, + 8581: 479, + 8582: 480, + 8583: 480, + 8584: 480, + 8585: 480, + 8586: 480, + 8587: 480, + 8588: 480, + 8589: 480, + 8590: 480, + 8591: 480, + 8592: 480, + 8593: 480, + 8594: 480, + 8595: 480, + 8596: 480, + 8597: 480, + 8598: 480, + 8599: 480, + 8600: 480, + 8601: 480, + 8602: 480, + 8603: 480, + 8604: 480, + 8605: 480, + 8606: 480, + 8607: 480, + 8608: 480, + 8609: 480, + 8610: 480, + 8611: 480, + 8612: 480, + 8613: 480, + 8614: 481, + 8615: 481, + 8616: 481, + 8617: 481, + 8618: 481, + 8619: 481, + 8620: 481, + 8621: 481, + 8622: 481, + 8623: 481, + 8624: 481, + 8625: 481, + 8626: 481, + 8627: 481, + 8628: 481, + 8629: 481, + 8630: 481, + 8631: 481, + 8632: 481, + 8633: 481, + 8634: 481, + 8635: 481, + 8636: 481, + 8637: 481, + 8638: 481, + 8639: 481, + 8640: 481, + 8641: 481, + 8642: 481, + 8643: 481, + 8644: 481, + 8645: 481, + 8646: 482, + 8647: 482, + 8648: 482, + 8649: 482, + 8650: 482, + 8651: 482, + 8652: 482, + 8653: 482, + 8654: 482, + 8655: 482, + 8656: 482, + 8657: 482, + 8658: 482, + 8659: 482, + 8660: 482, + 8661: 482, + 8662: 482, + 8663: 482, + 8664: 482, + 8665: 482, + 8666: 482, + 8667: 482, + 8668: 482, + 8669: 482, + 8670: 482, + 8671: 482, + 8672: 482, + 8673: 482, + 8674: 482, + 8675: 482, + 8676: 482, + 8677: 482, + 8678: 483, + 8679: 483, + 8680: 483, + 8681: 483, + 8682: 483, + 8683: 483, + 8684: 483, + 8685: 483, + 8686: 483, + 8687: 483, + 8688: 483, + 8689: 483, + 8690: 483, + 8691: 483, + 8692: 483, + 8693: 483, + 8694: 483, + 8695: 483, + 8696: 483, + 8697: 483, + 8698: 483, + 8699: 483, + 8700: 483, + 8701: 483, + 8702: 483, + 8703: 483, + 8704: 483, + 8705: 483, + 8706: 483, + 8707: 483, + 8708: 483, + 8709: 483, + 8710: 484, + 8711: 484, + 8712: 484, + 8713: 484, + 8714: 484, + 8715: 484, + 8716: 484, + 8717: 484, + 8718: 484, + 8719: 484, + 8720: 484, + 8721: 484, + 8722: 484, + 8723: 484, + 8724: 484, + 8725: 484, + 8726: 484, + 8727: 484, + 8728: 484, + 8729: 484, + 8730: 484, + 8731: 484, + 8732: 484, + 8733: 484, + 8734: 484, + 8735: 484, + 8736: 484, + 8737: 484, + 8738: 484, + 8739: 484, + 8740: 484, + 8741: 484, + 8742: 485, + 8743: 485, + 8744: 485, + 8745: 485, + 8746: 485, + 8747: 485, + 8748: 485, + 8749: 485, + 8750: 485, + 8751: 485, + 8752: 485, + 8753: 485, + 8754: 485, + 8755: 485, + 8756: 485, + 8757: 485, + 8758: 485, + 8759: 485, + 8760: 485, + 8761: 485, + 8762: 485, + 8763: 485, + 8764: 485, + 8765: 485, + 8766: 485, + 8767: 485, + 8768: 485, + 8769: 485, + 8770: 485, + 8771: 485, + 8772: 485, + 8773: 485, + 8774: 485, + 8775: 485, + 8776: 485, + 8777: 485, + 8778: 485, + 8779: 485, + 8780: 485, + 8781: 485, + 8782: 485, + 8783: 485, + 8784: 485, + 8785: 485, + 8786: 485, + 8787: 485, + 8788: 485, + 8789: 485, + 8790: 485, + 8791: 485, + 8792: 485, + 8793: 485, + 8794: 485, + 8795: 485, + 8796: 485, + 8797: 485, + 8798: 485, + 8799: 485, + 8800: 485, + 8801: 485, + 8802: 485, + 8803: 485, + 8804: 485, + 8805: 485, + 8806: 486, + 8807: 486, + 8808: 486, + 8809: 486, + 8810: 486, + 8811: 486, + 8812: 486, + 8813: 486, + 8814: 486, + 8815: 486, + 8816: 486, + 8817: 486, + 8818: 486, + 8819: 486, + 8820: 486, + 8821: 486, + 8822: 486, + 8823: 486, + 8824: 486, + 8825: 486, + 8826: 486, + 8827: 486, + 8828: 486, + 8829: 486, + 8830: 486, + 8831: 486, + 8832: 486, + 8833: 486, + 8834: 486, + 8835: 486, + 8836: 486, + 8837: 486, + 8838: 486, + 8839: 486, + 8840: 486, + 8841: 486, + 8842: 486, + 8843: 486, + 8844: 486, + 8845: 486, + 8846: 486, + 8847: 486, + 8848: 486, + 8849: 486, + 8850: 486, + 8851: 486, + 8852: 486, + 8853: 486, + 8854: 486, + 8855: 486, + 8856: 486, + 8857: 486, + 8858: 486, + 8859: 486, + 8860: 486, + 8861: 486, + 8862: 486, + 8863: 486, + 8864: 486, + 8865: 486, + 8866: 486, + 8867: 486, + 8868: 486, + 8869: 486, + 8870: 487, + 8871: 487, + 8872: 487, + 8873: 487, + 8874: 487, + 8875: 487, + 8876: 487, + 8877: 487, + 8878: 487, + 8879: 487, + 8880: 487, + 8881: 487, + 8882: 487, + 8883: 487, + 8884: 487, + 8885: 487, + 8886: 487, + 8887: 487, + 8888: 487, + 8889: 487, + 8890: 487, + 8891: 487, + 8892: 487, + 8893: 487, + 8894: 487, + 8895: 487, + 8896: 487, + 8897: 487, + 8898: 487, + 8899: 487, + 8900: 487, + 8901: 487, + 8902: 487, + 8903: 487, + 8904: 487, + 8905: 487, + 8906: 487, + 8907: 487, + 8908: 487, + 8909: 487, + 8910: 487, + 8911: 487, + 8912: 487, + 8913: 487, + 8914: 487, + 8915: 487, + 8916: 487, + 8917: 487, + 8918: 487, + 8919: 487, + 8920: 487, + 8921: 487, + 8922: 487, + 8923: 487, + 8924: 487, + 8925: 487, + 8926: 487, + 8927: 487, + 8928: 487, + 8929: 487, + 8930: 487, + 8931: 487, + 8932: 487, + 8933: 487, + 8934: 488, + 8935: 488, + 8936: 488, + 8937: 488, + 8938: 488, + 8939: 488, + 8940: 488, + 8941: 488, + 8942: 488, + 8943: 488, + 8944: 488, + 8945: 488, + 8946: 488, + 8947: 488, + 8948: 488, + 8949: 488, + 8950: 488, + 8951: 488, + 8952: 488, + 8953: 488, + 8954: 488, + 8955: 488, + 8956: 488, + 8957: 488, + 8958: 488, + 8959: 488, + 8960: 488, + 8961: 488, + 8962: 488, + 8963: 488, + 8964: 488, + 8965: 488, + 8966: 488, + 8967: 488, + 8968: 488, + 8969: 488, + 8970: 488, + 8971: 488, + 8972: 488, + 8973: 488, + 8974: 488, + 8975: 488, + 8976: 488, + 8977: 488, + 8978: 488, + 8979: 488, + 8980: 488, + 8981: 488, + 8982: 488, + 8983: 488, + 8984: 488, + 8985: 488, + 8986: 488, + 8987: 488, + 8988: 488, + 8989: 488, + 8990: 488, + 8991: 488, + 8992: 488, + 8993: 488, + 8994: 488, + 8995: 488, + 8996: 488, + 8997: 488, + 8998: 489, + 8999: 489, + 9000: 489, + 9001: 489, + 9002: 489, + 9003: 489, + 9004: 489, + 9005: 489, + 9006: 489, + 9007: 489, + 9008: 489, + 9009: 489, + 9010: 489, + 9011: 489, + 9012: 489, + 9013: 489, + 9014: 489, + 9015: 489, + 9016: 489, + 9017: 489, + 9018: 489, + 9019: 489, + 9020: 489, + 9021: 489, + 9022: 489, + 9023: 489, + 9024: 489, + 9025: 489, + 9026: 489, + 9027: 489, + 9028: 489, + 9029: 489, + 9030: 489, + 9031: 489, + 9032: 489, + 9033: 489, + 9034: 489, + 9035: 489, + 9036: 489, + 9037: 489, + 9038: 489, + 9039: 489, + 9040: 489, + 9041: 489, + 9042: 489, + 9043: 489, + 9044: 489, + 9045: 489, + 9046: 489, + 9047: 489, + 9048: 489, + 9049: 489, + 9050: 489, + 9051: 489, + 9052: 489, + 9053: 489, + 9054: 489, + 9055: 489, + 9056: 489, + 9057: 489, + 9058: 489, + 9059: 489, + 9060: 489, + 9061: 489, + 9062: 490, + 9063: 490, + 9064: 490, + 9065: 490, + 9066: 490, + 9067: 490, + 9068: 491, + 9069: 491, + 9070: 491, + 9071: 491, + 9072: 491, + 9073: 491, + 9074: 491, + 9075: 491, + 9076: 491, + 9077: 491, + 9078: 491, + 9079: 491, + 9080: 491, + 9081: 491, + 9082: 491, + 9083: 491, + 9084: 491, + 9085: 491, + 9086: 491, + 9087: 491, + 9088: 491, + 9089: 491, + 9090: 491, + 9091: 491, + 9092: 491, + 9093: 491, + 9094: 491, + 9095: 491, + 9096: 491, + 9097: 491, + 9098: 491, + 9099: 491, + 9100: 491, + 9101: 491, + 9102: 491, + 9103: 491, + 9104: 491, + 9105: 491, + 9106: 491, + 9107: 491, + 9108: 491, + 9109: 491, + 9110: 491, + 9111: 491, + 9112: 491, + 9113: 491, + 9114: 491, + 9115: 491, + 9116: 491, + 9117: 491, + 9118: 491, + 9119: 491, + 9120: 491, + 9121: 491, + 9122: 491, + 9123: 491, + 9124: 491, + 9125: 491, + 9126: 491, + 9127: 491, + 9128: 491, + 9129: 491, + 9130: 491, + 9131: 491, + 9132: 492, + 9133: 492, + 9134: 492, + 9135: 492, + 9136: 492, + 9137: 492, + 9138: 493, + 9139: 494, + 9140: 494, + 9141: 494, + 9142: 495, + 9143: 495, + 9144: 495, + 9145: 495, + 9146: 495, + 9147: 495, + 9148: 495, + 9149: 495, + 9150: 495, + 9151: 495, + 9152: 495, + 9153: 495, + 9154: 495, + 9155: 495, + 9156: 495, + 9157: 495, + 9158: 495, + 9159: 495, + 9160: 495, + 9161: 495, + 9162: 495, + 9163: 495, + 9164: 495, + 9165: 495, + 9166: 495, + 9167: 495, + 9168: 495, + 9169: 495, + 9170: 495, + 9171: 495, + 9172: 495, + 9173: 495, + 9174: 495, + 9175: 495, + 9176: 495, + 9177: 495, + 9178: 495, + 9179: 495, + 9180: 495, + 9181: 495, + 9182: 495, + 9183: 495, + 9184: 495, + 9185: 495, + 9186: 495, + 9187: 495, + 9188: 495, + 9189: 495, + 9190: 495, + 9191: 495, + 9192: 495, + 9193: 495, + 9194: 495, + 9195: 495, + 9196: 495, + 9197: 495, + 9198: 495, + 9199: 495, + 9200: 495, + 9201: 495, + 9202: 495, + 9203: 495, + 9204: 495, + 9205: 495, + 9206: 495, + 9207: 495, + 9208: 495, + 9209: 495, + 9210: 495, + 9211: 495, + 9212: 495, + 9213: 495, + 9214: 495, + 9215: 495, + 9216: 495, + 9217: 495, + 9218: 495, + 9219: 495, + 9220: 495, + 9221: 495, + 9222: 496, + 9223: 497, + 9224: 497, + 9225: 497, + 9226: 497, + 9227: 498, + 9228: 499, + 9229: 500, + 9230: 500, + 9231: 500, + 9232: 500, + 9233: 500, + 9234: 500, + 9235: 500, + 9236: 500, + 9237: 500, + 9238: 500, + 9239: 500, + 9240: 500, + 9241: 501, + 9242: 501, + 9243: 501, + 9244: 501, + 9245: 501, + 9246: 501, + 9247: 501, + 9248: 501, + 9249: 501, + 9250: 501, + 9251: 501, + 9252: 501, + 9253: 502, + 9254: 502, + 9255: 502, + 9256: 502, + 9257: 503, + 9258: 504, + 9259: 505, + 9260: 506, + 9261: 506, + 9262: 506, + 9263: 507, + 9264: 508, + 9265: 508, + 9266: 508, + 9267: 508, + 9268: 508, + 9269: 508, + 9270: 508, + 9271: 508, + 9272: 508, + 9273: 508, + 9274: 508, + 9275: 508, + 9276: 509, + 9277: 509, + 9278: 509, + 9279: 509, + 9280: 509, + 9281: 509, + 9282: 510, + 9283: 510, + 9284: 510, + 9285: 510, + 9286: 510, + 9287: 510, + 9288: 511, + 9289: 511, + 9290: 511, + 9291: 511, + 9292: 511, + 9293: 511, + 9294: 512, + 9295: 512, + 9296: 512, + 9297: 512, + 9298: 512, + 9299: 512, + 9300: 513, + 9301: 513, + 9302: 513, + 9303: 513, + 9304: 513, + 9305: 513, + 9306: 514, + 9307: 514, + 9308: 514, + 9309: 514, + 9310: 514, + 9311: 514, + 9312: 515, + 9313: 515, + 9314: 515, + 9315: 515, + 9316: 515, + 9317: 515, + 9318: 516, + 9319: 516, + 9320: 516, + 9321: 516, + 9322: 516, + 9323: 516, + 9324: 517, + 9325: 517, + 9326: 517, + 9327: 517, + 9328: 517, + 9329: 517, + 9330: 518, + 9331: 518, + 9332: 518, + 9333: 518, + 9334: 518, + 9335: 518, + 9336: 519, + 9337: 519, + 9338: 519, + 9339: 519, + 9340: 519, + 9341: 519, + 9342: 520, + 9343: 520, + 9344: 520, + 9345: 520, + 9346: 520, + 9347: 520, + 9348: 521, + 9349: 521, + 9350: 521, + 9351: 521, + 9352: 521, + 9353: 521, + 9354: 522, + 9355: 522, + 9356: 522, + 9357: 522, + 9358: 522, + 9359: 522, + 9360: 523, + 9361: 523, + 9362: 523, + 9363: 523, + 9364: 523, + 9365: 523, + 9366: 524, + 9367: 524, + 9368: 524, + 9369: 524, + 9370: 524, + 9371: 524, + 9372: 525, + 9373: 525, + 9374: 525, + 9375: 525, + 9376: 525, + 9377: 525, + 9378: 526, + 9379: 526, + 9380: 526, + 9381: 526, + 9382: 527, + 9383: 527, + 9384: 527, + 9385: 527, + 9386: 528, + 9387: 528, + 9388: 528, + 9389: 528, + 9390: 529, + 9391: 529, + 9392: 529, + 9393: 529, + 9394: 530, + 9395: 530, + 9396: 530, + 9397: 530, + 9398: 531, + 9399: 531, + 9400: 531, + 9401: 531, + 9402: 532, + 9403: 532, + 9404: 532, + 9405: 532, + 9406: 533, + 9407: 533, + 9408: 533, + 9409: 533, + 9410: 534, + 9411: 534, + 9412: 534, + 9413: 534, + 9414: 535, + 9415: 535, + 9416: 535, + 9417: 535, + 9418: 536, + 9419: 536, + 9420: 536, + 9421: 536, + 9422: 537, + 9423: 537, + 9424: 537, + 9425: 537, + 9426: 538, + 9427: 538, + 9428: 538, + 9429: 538, + 9430: 539, + 9431: 539, + 9432: 539, + 9433: 539, + 9434: 540, + 9435: 540, + 9436: 540, + 9437: 540, + 9438: 541, + 9439: 541, + 9440: 541, + 9441: 541, + 9442: 542, + 9443: 543, + 9444: 544, + 9445: 545, + 9446: 546, + 9447: 547, + 9448: 548, + 9449: 549, + 9450: 550, + 9451: 551, + 9452: 552, + 9453: 553, + 9454: 554, + 9455: 555, + 9456: 556, + 9457: 557, + 9458: 558, + 9459: 559, + 9460: 560, + 9461: 561, + 9462: 562, + 9463: 563, + 9464: 564, + 9465: 565, + 9466: 566, + 9467: 567, + 9468: 568, + 9469: 569, + 9470: 570, + 9471: 571, + 9472: 572, + 9473: 573, + 9474: 574, + 9475: 574, + 9476: 574, + 9477: 574, + 9478: 574, + 9479: 574, + 9480: 574, + 9481: 574, + 9482: 574, + 9483: 574, + 9484: 574, + 9485: 574, + 9486: 574, + 9487: 574, + 9488: 574, + 9489: 574, + 9490: 574, + 9491: 574, + 9492: 574, + 9493: 574, + 9494: 574, + 9495: 574, + 9496: 574, + 9497: 574, + 9498: 574, + 9499: 574, + 9500: 575, + 9501: 576, + 9502: 577, + 9503: 577, + 9504: 577, + 9505: 577, + 9506: 577, + 9507: 577, + 9508: 577, + 9509: 577, + 9510: 577, + 9511: 577, + 9512: 577, + 9513: 577, + 9514: 578, + 9515: 579, + 9516: 580, + 9517: 581, + 9518: 582, + 9519: 583, + 9520: 584, + 9521: 585, + 9522: 586, + 9523: 587, + 9524: 588, + 9525: 588, + 9526: 589, + 9527: 589, + 9528: 590, + 9529: 590, + 9530: 591, + 9531: 591, + 9532: 592, + 9533: 592, + 9534: 593, + 9535: 593, + 9536: 594, + 9537: 594, + 9538: 595, + 9539: 595, + 9540: 596, + 9541: 596, + 9542: 597, + 9543: 597, + 9544: 598, + 9545: 598, + 9546: 599, + 9547: 599, + 9548: 600, + 9549: 600, + 9550: 601, + 9551: 601, + 9552: 602, + 9553: 602, + 9554: 603, + 9555: 603, + 9556: 604, + 9557: 604, + 9558: 605, + 9559: 605, + 9560: 606, + 9561: 606, + 9562: 607, + 9563: 607, + 9564: 608, + 9565: 608, + 9566: 608, + 9567: 608, + 9568: 608, + 9569: 608, + 9570: 608, + 9571: 608, + 9572: 609, + 9573: 609, + 9574: 609, + 9575: 609, + 9576: 609, + 9577: 609, + 9578: 609, + 9579: 609, + 9580: 610, + 9581: 610, + 9582: 610, + 9583: 610, + 9584: 610, + 9585: 610, + 9586: 610, + 9587: 610, + 9588: 611, + 9589: 611, + 9590: 611, + 9591: 611, + 9592: 611, + 9593: 611, + 9594: 611, + 9595: 611, + 9596: 612, + 9597: 612, + 9598: 612, + 9599: 612, + 9600: 612, + 9601: 612, + 9602: 612, + 9603: 612, + 9604: 613, + 9605: 613, + 9606: 613, + 9607: 613, + 9608: 613, + 9609: 613, + 9610: 613, + 9611: 613, + 9612: 614, + 9613: 614, + 9614: 614, + 9615: 614, + 9616: 614, + 9617: 614, + 9618: 614, + 9619: 614, + 9620: 615, + 9621: 615, + 9622: 615, + 9623: 615, + 9624: 615, + 9625: 615, + 9626: 615, + 9627: 615, + 9628: 616, + 9629: 616, + 9630: 616, + 9631: 616, + 9632: 616, + 9633: 616, + 9634: 616, + 9635: 616, + 9636: 617, + 9637: 617, + 9638: 617, + 9639: 617, + 9640: 617, + 9641: 617, + 9642: 617, + 9643: 617, + 9644: 618, + 9645: 618, + 9646: 618, + 9647: 618, + 9648: 618, + 9649: 618, + 9650: 618, + 9651: 618, + 9652: 619, + 9653: 620, + 9654: 620, + 9655: 621, + 9656: 622, + 9657: 622, + 9658: 622, + 9659: 622, + 9660: 622, + 9661: 622, + 9662: 622, + 9663: 622, + 9664: 622, + 9665: 622, + 9666: 622, + 9667: 622, + 9668: 623, + 9669: 624, + 9670: 625, + 9671: 626, + 9672: 626, + 9673: 627, + 9674: 627, + 9675: 627, + 9676: 627, + 9677: 627, + 9678: 627, + 9679: 627, + 9680: 627, + 9681: 627, + 9682: 627, + 9683: 627, + 9684: 627, + 9685: 627, + 9686: 627, + 9687: 627, + 9688: 627, + 9689: 627, + 9690: 627, + 9691: 627, + 9692: 627, + 9693: 627, + 9694: 627, + 9695: 627, + 9696: 627, + 9697: 627, + 9698: 627, + 9699: 627, + 9700: 627, + 9701: 627, + 9702: 627, + 9703: 627, + 9704: 627, + 9705: 627, + 9706: 627, + 9707: 627, + 9708: 627, + 9709: 627, + 9710: 627, + 9711: 627, + 9712: 627, + 9713: 627, + 9714: 627, + 9715: 627, + 9716: 627, + 9717: 627, + 9718: 627, + 9719: 627, + 9720: 627, + 9721: 627, + 9722: 627, + 9723: 627, + 9724: 627, + 9725: 627, + 9726: 627, + 9727: 627, + 9728: 627, + 9729: 627, + 9730: 627, + 9731: 627, + 9732: 627, + 9733: 627, + 9734: 627, + 9735: 627, + 9736: 627, + 9737: 627, + 9738: 627, + 9739: 627, + 9740: 627, + 9741: 627, + 9742: 627, + 9743: 627, + 9744: 627, + 9745: 627, + 9746: 627, + 9747: 627, + 9748: 627, + 9749: 627, + 9750: 627, + 9751: 627, + 9752: 627, + 9753: 628, + 9754: 628, + 9755: 628, + 9756: 628, + 9757: 628, + 9758: 628, + 9759: 628, + 9760: 628, + 9761: 628, + 9762: 628, + 9763: 628, + 9764: 628, + 9765: 628, + 9766: 628, + 9767: 628, + 9768: 628, + 9769: 628, + 9770: 628, + 9771: 628, + 9772: 628, + 9773: 628, + 9774: 628, + 9775: 628, + 9776: 628, + 9777: 628, + 9778: 628, + 9779: 628, + 9780: 628, + 9781: 628, + 9782: 628, + 9783: 628, + 9784: 628, + 9785: 628, + 9786: 628, + 9787: 628, + 9788: 628, + 9789: 628, + 9790: 628, + 9791: 628, + 9792: 628, + 9793: 628, + 9794: 628, + 9795: 628, + 9796: 628, + 9797: 628, + 9798: 628, + 9799: 628, + 9800: 628, + 9801: 628, + 9802: 628, + 9803: 628, + 9804: 628, + 9805: 628, + 9806: 628, + 9807: 628, + 9808: 628, + 9809: 628, + 9810: 628, + 9811: 628, + 9812: 628, + 9813: 628, + 9814: 628, + 9815: 628, + 9816: 628, + 9817: 628, + 9818: 628, + 9819: 628, + 9820: 628, + 9821: 628, + 9822: 628, + 9823: 628, + 9824: 628, + 9825: 628, + 9826: 628, + 9827: 628, + 9828: 628, + 9829: 628, + 9830: 628, + 9831: 628, + 9832: 628, + 9833: 629, + 9834: 629, + 9835: 629, + 9836: 629, + 9837: 629, + 9838: 629, + 9839: 629, + 9840: 629, + 9841: 629, + 9842: 629, + 9843: 629, + 9844: 629, + 9845: 629, + 9846: 629, + 9847: 629, + 9848: 629, + 9849: 629, + 9850: 629, + 9851: 629, + 9852: 629, + 9853: 629, + 9854: 629, + 9855: 629, + 9856: 629, + 9857: 629, + 9858: 629, + 9859: 629, + 9860: 629, + 9861: 629, + 9862: 629, + 9863: 629, + 9864: 629, + 9865: 629, + 9866: 629, + 9867: 629, + 9868: 629, + 9869: 629, + 9870: 629, + 9871: 629, + 9872: 629, + 9873: 629, + 9874: 629, + 9875: 629, + 9876: 629, + 9877: 629, + 9878: 629, + 9879: 629, + 9880: 629, + 9881: 629, + 9882: 629, + 9883: 629, + 9884: 629, + 9885: 629, + 9886: 629, + 9887: 629, + 9888: 629, + 9889: 629, + 9890: 629, + 9891: 629, + 9892: 629, + 9893: 629, + 9894: 629, + 9895: 629, + 9896: 629, + 9897: 629, + 9898: 629, + 9899: 629, + 9900: 629, + 9901: 629, + 9902: 629, + 9903: 629, + 9904: 629, + 9905: 629, + 9906: 629, + 9907: 629, + 9908: 629, + 9909: 629, + 9910: 629, + 9911: 629, + 9912: 629, + 9913: 630, + 9914: 630, + 9915: 630, + 9916: 630, + 9917: 630, + 9918: 630, + 9919: 630, + 9920: 630, + 9921: 630, + 9922: 630, + 9923: 630, + 9924: 630, + 9925: 630, + 9926: 630, + 9927: 630, + 9928: 630, + 9929: 630, + 9930: 630, + 9931: 630, + 9932: 630, + 9933: 630, + 9934: 630, + 9935: 630, + 9936: 630, + 9937: 630, + 9938: 630, + 9939: 630, + 9940: 630, + 9941: 630, + 9942: 630, + 9943: 630, + 9944: 630, + 9945: 630, + 9946: 630, + 9947: 630, + 9948: 630, + 9949: 630, + 9950: 630, + 9951: 630, + 9952: 630, + 9953: 630, + 9954: 630, + 9955: 630, + 9956: 630, + 9957: 630, + 9958: 630, + 9959: 630, + 9960: 630, + 9961: 630, + 9962: 630, + 9963: 630, + 9964: 630, + 9965: 630, + 9966: 630, + 9967: 630, + 9968: 630, + 9969: 630, + 9970: 630, + 9971: 630, + 9972: 630, + 9973: 630, + 9974: 630, + 9975: 630, + 9976: 630, + 9977: 630, + 9978: 630, + 9979: 630, + 9980: 630, + 9981: 630, + 9982: 630, + 9983: 630, + 9984: 630, + 9985: 630, + 9986: 630, + 9987: 630, + 9988: 630, + 9989: 630, + 9990: 630, + 9991: 630, + 9992: 630, + 9993: 631, + 9994: 631, + 9995: 631, + 9996: 631, + 9997: 631, + 9998: 631, + 9999: 631, + 10000: 631, + 10001: 631, + 10002: 631, + 10003: 631, + 10004: 631, + 10005: 631, + 10006: 631, + 10007: 631, + 10008: 631, + 10009: 631, + 10010: 631, + 10011: 631, + 10012: 631, + 10013: 631, + 10014: 631, + 10015: 631, + 10016: 631, + 10017: 631, + 10018: 631, + 10019: 631, + 10020: 631, + 10021: 631, + 10022: 631, + 10023: 631, + 10024: 631, + 10025: 631, + 10026: 631, + 10027: 631, + 10028: 631, + 10029: 631, + 10030: 631, + 10031: 631, + 10032: 631, + 10033: 631, + 10034: 631, + 10035: 631, + 10036: 631, + 10037: 631, + 10038: 631, + 10039: 631, + 10040: 631, + 10041: 631, + 10042: 631, + 10043: 631, + 10044: 631, + 10045: 631, + 10046: 631, + 10047: 631, + 10048: 631, + 10049: 631, + 10050: 631, + 10051: 631, + 10052: 631, + 10053: 631, + 10054: 631, + 10055: 631, + 10056: 631, + 10057: 631, + 10058: 631, + 10059: 631, + 10060: 631, + 10061: 631, + 10062: 631, + 10063: 631, + 10064: 631, + 10065: 631, + 10066: 631, + 10067: 631, + 10068: 631, + 10069: 631, + 10070: 631, + 10071: 631, + 10072: 631, + 10073: 632, + 10074: 632, + 10075: 632, + 10076: 632, + 10077: 632, + 10078: 632, + 10079: 632, + 10080: 632, + 10081: 632, + 10082: 632, + 10083: 632, + 10084: 632, + 10085: 632, + 10086: 632, + 10087: 632, + 10088: 632, + 10089: 632, + 10090: 632, + 10091: 632, + 10092: 632, + 10093: 632, + 10094: 632, + 10095: 632, + 10096: 632, + 10097: 632, + 10098: 632, + 10099: 632, + 10100: 632, + 10101: 632, + 10102: 632, + 10103: 632, + 10104: 632, + 10105: 632, + 10106: 632, + 10107: 632, + 10108: 632, + 10109: 632, + 10110: 632, + 10111: 632, + 10112: 632, + 10113: 632, + 10114: 632, + 10115: 632, + 10116: 632, + 10117: 632, + 10118: 632, + 10119: 632, + 10120: 632, + 10121: 632, + 10122: 632, + 10123: 632, + 10124: 632, + 10125: 632, + 10126: 632, + 10127: 632, + 10128: 632, + 10129: 632, + 10130: 632, + 10131: 632, + 10132: 632, + 10133: 632, + 10134: 632, + 10135: 632, + 10136: 632, + 10137: 632, + 10138: 632, + 10139: 632, + 10140: 632, + 10141: 632, + 10142: 632, + 10143: 632, + 10144: 632, + 10145: 632, + 10146: 632, + 10147: 632, + 10148: 632, + 10149: 632, + 10150: 632, + 10151: 632, + 10152: 632, + 10153: 633, + 10154: 633, + 10155: 633, + 10156: 633, + 10157: 633, + 10158: 633, + 10159: 633, + 10160: 633, + 10161: 633, + 10162: 633, + 10163: 633, + 10164: 633, + 10165: 633, + 10166: 633, + 10167: 633, + 10168: 633, + 10169: 633, + 10170: 633, + 10171: 633, + 10172: 633, + 10173: 633, + 10174: 633, + 10175: 633, + 10176: 633, + 10177: 633, + 10178: 633, + 10179: 633, + 10180: 633, + 10181: 633, + 10182: 633, + 10183: 633, + 10184: 633, + 10185: 633, + 10186: 633, + 10187: 633, + 10188: 633, + 10189: 633, + 10190: 633, + 10191: 633, + 10192: 633, + 10193: 633, + 10194: 633, + 10195: 633, + 10196: 633, + 10197: 633, + 10198: 633, + 10199: 633, + 10200: 633, + 10201: 633, + 10202: 633, + 10203: 633, + 10204: 633, + 10205: 633, + 10206: 633, + 10207: 633, + 10208: 633, + 10209: 633, + 10210: 633, + 10211: 633, + 10212: 633, + 10213: 633, + 10214: 633, + 10215: 633, + 10216: 633, + 10217: 633, + 10218: 633, + 10219: 633, + 10220: 633, + 10221: 633, + 10222: 633, + 10223: 633, + 10224: 633, + 10225: 633, + 10226: 633, + 10227: 633, + 10228: 633, + 10229: 633, + 10230: 633, + 10231: 633, + 10232: 633, + 10233: 634, + 10234: 634, + 10235: 634, + 10236: 634, + 10237: 634, + 10238: 634, + 10239: 634, + 10240: 634, + 10241: 634, + 10242: 634, + 10243: 634, + 10244: 634, + 10245: 634, + 10246: 634, + 10247: 634, + 10248: 634, + 10249: 634, + 10250: 634, + 10251: 634, + 10252: 634, + 10253: 634, + 10254: 634, + 10255: 634, + 10256: 634, + 10257: 634, + 10258: 634, + 10259: 634, + 10260: 634, + 10261: 634, + 10262: 634, + 10263: 634, + 10264: 634, + 10265: 634, + 10266: 634, + 10267: 634, + 10268: 634, + 10269: 634, + 10270: 634, + 10271: 634, + 10272: 634, + 10273: 634, + 10274: 634, + 10275: 634, + 10276: 634, + 10277: 634, + 10278: 634, + 10279: 634, + 10280: 634, + 10281: 634, + 10282: 634, + 10283: 634, + 10284: 634, + 10285: 634, + 10286: 634, + 10287: 634, + 10288: 634, + 10289: 634, + 10290: 634, + 10291: 634, + 10292: 634, + 10293: 634, + 10294: 634, + 10295: 634, + 10296: 634, + 10297: 634, + 10298: 634, + 10299: 634, + 10300: 634, + 10301: 634, + 10302: 634, + 10303: 634, + 10304: 634, + 10305: 634, + 10306: 634, + 10307: 634, + 10308: 634, + 10309: 634, + 10310: 634, + 10311: 634, + 10312: 634, + 10313: 635, + 10314: 635, + 10315: 635, + 10316: 635, + 10317: 635, + 10318: 635, + 10319: 635, + 10320: 635, + 10321: 635, + 10322: 635, + 10323: 635, + 10324: 635, + 10325: 635, + 10326: 635, + 10327: 635, + 10328: 635, + 10329: 635, + 10330: 635, + 10331: 635, + 10332: 635, + 10333: 635, + 10334: 635, + 10335: 635, + 10336: 635, + 10337: 635, + 10338: 635, + 10339: 635, + 10340: 635, + 10341: 635, + 10342: 635, + 10343: 635, + 10344: 635, + 10345: 635, + 10346: 635, + 10347: 635, + 10348: 635, + 10349: 635, + 10350: 635, + 10351: 635, + 10352: 635, + 10353: 635, + 10354: 635, + 10355: 635, + 10356: 635, + 10357: 635, + 10358: 635, + 10359: 635, + 10360: 635, + 10361: 635, + 10362: 635, + 10363: 635, + 10364: 635, + 10365: 635, + 10366: 635, + 10367: 635, + 10368: 635, + 10369: 635, + 10370: 635, + 10371: 635, + 10372: 635, + 10373: 635, + 10374: 635, + 10375: 635, + 10376: 635, + 10377: 635, + 10378: 635, + 10379: 635, + 10380: 635, + 10381: 635, + 10382: 635, + 10383: 635, + 10384: 635, + 10385: 635, + 10386: 635, + 10387: 635, + 10388: 635, + 10389: 635, + 10390: 635, + 10391: 635, + 10392: 635, + 10393: 636, + 10394: 636, + 10395: 636, + 10396: 636, + 10397: 636, + 10398: 636, + 10399: 636, + 10400: 636, + 10401: 636, + 10402: 636, + 10403: 636, + 10404: 636, + 10405: 636, + 10406: 636, + 10407: 636, + 10408: 636, + 10409: 636, + 10410: 636, + 10411: 636, + 10412: 636, + 10413: 636, + 10414: 636, + 10415: 636, + 10416: 636, + 10417: 636, + 10418: 636, + 10419: 636, + 10420: 636, + 10421: 636, + 10422: 636, + 10423: 636, + 10424: 636, + 10425: 636, + 10426: 636, + 10427: 636, + 10428: 636, + 10429: 636, + 10430: 636, + 10431: 636, + 10432: 636, + 10433: 636, + 10434: 636, + 10435: 636, + 10436: 636, + 10437: 636, + 10438: 636, + 10439: 636, + 10440: 636, + 10441: 636, + 10442: 636, + 10443: 636, + 10444: 636, + 10445: 636, + 10446: 636, + 10447: 636, + 10448: 636, + 10449: 636, + 10450: 636, + 10451: 636, + 10452: 636, + 10453: 636, + 10454: 636, + 10455: 636, + 10456: 636, + 10457: 636, + 10458: 636, + 10459: 636, + 10460: 636, + 10461: 636, + 10462: 636, + 10463: 636, + 10464: 636, + 10465: 636, + 10466: 636, + 10467: 636, + 10468: 636, + 10469: 636, + 10470: 636, + 10471: 636, + 10472: 636, + 10473: 637, + 10474: 637, + 10475: 637, + 10476: 637, + 10477: 637, + 10478: 637, + 10479: 637, + 10480: 637, + 10481: 637, + 10482: 637, + 10483: 637, + 10484: 637, + 10485: 637, + 10486: 637, + 10487: 637, + 10488: 637, + 10489: 637, + 10490: 637, + 10491: 637, + 10492: 637, + 10493: 637, + 10494: 637, + 10495: 637, + 10496: 637, + 10497: 637, + 10498: 637, + 10499: 637, + 10500: 637, + 10501: 637, + 10502: 637, + 10503: 637, + 10504: 637, + 10505: 637, + 10506: 637, + 10507: 637, + 10508: 637, + 10509: 637, + 10510: 637, + 10511: 637, + 10512: 637, + 10513: 637, + 10514: 637, + 10515: 637, + 10516: 637, + 10517: 637, + 10518: 637, + 10519: 637, + 10520: 637, + 10521: 637, + 10522: 637, + 10523: 637, + 10524: 637, + 10525: 637, + 10526: 637, + 10527: 637, + 10528: 637, + 10529: 637, + 10530: 637, + 10531: 637, + 10532: 637, + 10533: 637, + 10534: 637, + 10535: 637, + 10536: 637, + 10537: 637, + 10538: 637, + 10539: 637, + 10540: 637, + 10541: 637, + 10542: 637, + 10543: 637, + 10544: 637, + 10545: 637, + 10546: 637, + 10547: 637, + 10548: 637, + 10549: 637, + 10550: 637, + 10551: 637, + 10552: 637, + 10553: 638, + 10554: 638, + 10555: 638, + 10556: 638, + 10557: 638, + 10558: 638, + 10559: 638, + 10560: 638, + 10561: 638, + 10562: 638, + 10563: 638, + 10564: 638, + 10565: 638, + 10566: 638, + 10567: 638, + 10568: 638, + 10569: 638, + 10570: 638, + 10571: 638, + 10572: 638, + 10573: 638, + 10574: 638, + 10575: 638, + 10576: 638, + 10577: 638, + 10578: 638, + 10579: 638, + 10580: 638, + 10581: 638, + 10582: 638, + 10583: 638, + 10584: 638, + 10585: 638, + 10586: 638, + 10587: 638, + 10588: 638, + 10589: 638, + 10590: 638, + 10591: 638, + 10592: 638, + 10593: 638, + 10594: 638, + 10595: 638, + 10596: 638, + 10597: 638, + 10598: 638, + 10599: 638, + 10600: 638, + 10601: 638, + 10602: 638, + 10603: 638, + 10604: 638, + 10605: 638, + 10606: 638, + 10607: 638, + 10608: 638, + 10609: 638, + 10610: 638, + 10611: 638, + 10612: 638, + 10613: 638, + 10614: 638, + 10615: 638, + 10616: 638, + 10617: 638, + 10618: 638, + 10619: 638, + 10620: 638, + 10621: 638, + 10622: 638, + 10623: 638, + 10624: 638, + 10625: 638, + 10626: 638, + 10627: 638, + 10628: 638, + 10629: 638, + 10630: 638, + 10631: 638, + 10632: 638, + 10633: 639, + 10634: 639, + 10635: 639, + 10636: 639, + 10637: 639, + 10638: 639, + 10639: 639, + 10640: 639, + 10641: 639, + 10642: 639, + 10643: 639, + 10644: 639, + 10645: 639, + 10646: 639, + 10647: 639, + 10648: 639, + 10649: 639, + 10650: 639, + 10651: 639, + 10652: 639, + 10653: 639, + 10654: 639, + 10655: 639, + 10656: 639, + 10657: 639, + 10658: 639, + 10659: 639, + 10660: 639, + 10661: 639, + 10662: 639, + 10663: 639, + 10664: 639, + 10665: 639, + 10666: 639, + 10667: 639, + 10668: 639, + 10669: 639, + 10670: 639, + 10671: 639, + 10672: 639, + 10673: 639, + 10674: 639, + 10675: 639, + 10676: 639, + 10677: 639, + 10678: 639, + 10679: 639, + 10680: 639, + 10681: 639, + 10682: 639, + 10683: 639, + 10684: 639, + 10685: 639, + 10686: 639, + 10687: 639, + 10688: 639, + 10689: 639, + 10690: 639, + 10691: 639, + 10692: 639, + 10693: 639, + 10694: 639, + 10695: 639, + 10696: 639, + 10697: 639, + 10698: 639, + 10699: 639, + 10700: 639, + 10701: 639, + 10702: 639, + 10703: 639, + 10704: 639, + 10705: 639, + 10706: 639, + 10707: 639, + 10708: 639, + 10709: 639, + 10710: 639, + 10711: 639, + 10712: 639, + 10713: 640, + 10714: 640, + 10715: 640, + 10716: 640, + 10717: 640, + 10718: 640, + 10719: 640, + 10720: 640, + 10721: 640, + 10722: 640, + 10723: 640, + 10724: 640, + 10725: 640, + 10726: 640, + 10727: 640, + 10728: 640, + 10729: 640, + 10730: 640, + 10731: 640, + 10732: 640, + 10733: 640, + 10734: 640, + 10735: 640, + 10736: 640, + 10737: 640, + 10738: 640, + 10739: 640, + 10740: 640, + 10741: 640, + 10742: 640, + 10743: 640, + 10744: 640, + 10745: 640, + 10746: 640, + 10747: 640, + 10748: 640, + 10749: 640, + 10750: 640, + 10751: 640, + 10752: 640, + 10753: 640, + 10754: 640, + 10755: 640, + 10756: 640, + 10757: 640, + 10758: 640, + 10759: 640, + 10760: 640, + 10761: 640, + 10762: 640, + 10763: 640, + 10764: 640, + 10765: 640, + 10766: 640, + 10767: 640, + 10768: 640, + 10769: 640, + 10770: 640, + 10771: 640, + 10772: 640, + 10773: 640, + 10774: 640, + 10775: 640, + 10776: 640, + 10777: 640, + 10778: 640, + 10779: 640, + 10780: 640, + 10781: 640, + 10782: 640, + 10783: 640, + 10784: 640, + 10785: 640, + 10786: 640, + 10787: 640, + 10788: 640, + 10789: 640, + 10790: 640, + 10791: 640, + 10792: 640, + 10793: 641, + 10794: 641, + 10795: 641, + 10796: 641, + 10797: 641, + 10798: 641, + 10799: 642, + 10800: 642, + 10801: 642, + 10802: 642, + 10803: 642, + 10804: 642, + 10805: 643, + 10806: 643, + 10807: 643, + 10808: 643, + 10809: 643, + 10810: 643, + 10811: 644, + 10812: 644, + 10813: 644, + 10814: 644, + 10815: 644, + 10816: 644, + 10817: 645, + 10818: 645, + 10819: 645, + 10820: 645, + 10821: 645, + 10822: 645, + 10823: 646, + 10824: 646, + 10825: 646, + 10826: 646, + 10827: 646, + 10828: 646, + 10829: 647, + 10830: 647, + 10831: 647, + 10832: 647, + 10833: 647, + 10834: 647, + 10835: 648, + 10836: 648, + 10837: 648, + 10838: 648, + 10839: 648, + 10840: 648, + 10841: 649, + 10842: 649, + 10843: 649, + 10844: 649, + 10845: 649, + 10846: 649, + 10847: 650, + 10848: 650, + 10849: 650, + 10850: 650, + 10851: 650, + 10852: 650, + 10853: 651, + 10854: 651, + 10855: 651, + 10856: 651, + 10857: 651, + 10858: 651, + 10859: 652, + 10860: 652, + 10861: 652, + 10862: 652, + 10863: 652, + 10864: 652, + 10865: 653, + 10866: 653, + 10867: 653, + 10868: 653, + 10869: 653, + 10870: 653, + 10871: 654, + 10872: 654, + 10873: 654, + 10874: 654, + 10875: 654, + 10876: 654, + 10877: 654, + 10878: 654, + 10879: 654, + 10880: 654, + 10881: 654, + 10882: 654, + 10883: 654, + 10884: 654, + 10885: 654, + 10886: 654, + 10887: 654, + 10888: 654, + 10889: 654, + 10890: 654, + 10891: 654, + 10892: 654, + 10893: 654, + 10894: 654, + 10895: 654, + 10896: 654, + 10897: 654, + 10898: 654, + 10899: 654, + 10900: 654, + 10901: 654, + 10902: 654, + 10903: 654, + 10904: 654, + 10905: 654, + 10906: 654, + 10907: 654, + 10908: 654, + 10909: 654, + 10910: 654, + 10911: 654, + 10912: 654, + 10913: 654, + 10914: 654, + 10915: 654, + 10916: 654, + 10917: 654, + 10918: 654, + 10919: 654, + 10920: 654, + 10921: 654, + 10922: 654, + 10923: 654, + 10924: 654, + 10925: 654, + 10926: 654, + 10927: 654, + 10928: 654, + 10929: 654, + 10930: 654, + 10931: 654, + 10932: 654, + 10933: 654, + 10934: 654, + 10935: 654, + 10936: 654, + 10937: 654, + 10938: 654, + 10939: 654, + 10940: 654, + 10941: 654, + 10942: 654, + 10943: 654, + 10944: 654, + 10945: 654, + 10946: 654, + 10947: 654, + 10948: 654, + 10949: 654, + 10950: 654, + 10951: 654, + 10952: 654, + 10953: 654, + 10954: 654, + 10955: 654, + 10956: 654, + 10957: 654, + 10958: 654, + 10959: 654, + 10960: 654, + 10961: 654, + 10962: 654, + 10963: 654, + 10964: 654, + 10965: 654, + 10966: 654, + 10967: 654, + 10968: 654, + 10969: 654, + 10970: 654, + 10971: 654, + 10972: 654, + 10973: 654, + 10974: 654, + 10975: 654, + 10976: 654, + 10977: 654, + 10978: 654, + 10979: 654, + 10980: 654, + 10981: 654, + 10982: 654, + 10983: 654, + 10984: 654, + 10985: 654, + 10986: 654, + 10987: 654, + 10988: 654, + 10989: 654, + 10990: 654, + 10991: 654, + 10992: 654, + 10993: 654, + 10994: 654, + 10995: 654, + 10996: 654, + 10997: 654, + 10998: 654, + 10999: 654, + 11000: 654, + 11001: 654, + 11002: 654, + 11003: 654, + 11004: 654, + 11005: 654, + 11006: 654, + 11007: 654, + 11008: 654, + 11009: 654, + 11010: 654, + 11011: 654, + 11012: 654, + 11013: 654, + 11014: 654, + 11015: 654, + 11016: 654, + 11017: 654, + 11018: 654, + 11019: 654, + 11020: 654, + 11021: 654, + 11022: 654, + 11023: 654, + 11024: 654, + 11025: 654, + 11026: 654, + 11027: 654, + 11028: 654, + 11029: 654, + 11030: 654, + 11031: 654, + 11032: 654, + 11033: 654, + 11034: 654, + 11035: 654, + 11036: 654, + 11037: 654, + 11038: 654, + 11039: 654, + 11040: 654, + 11041: 654, + 11042: 654, + 11043: 654, + 11044: 654, + 11045: 654, + 11046: 654, + 11047: 654, + 11048: 654, + 11049: 654, + 11050: 654, + 11051: 654, + 11052: 654, + 11053: 654, + 11054: 654, + 11055: 654, + 11056: 654, + 11057: 654, + 11058: 654, + 11059: 654, + 11060: 654, + 11061: 654, + 11062: 654, + 11063: 654, + 11064: 654, + 11065: 654, + 11066: 654, + 11067: 654, + 11068: 654, + 11069: 654, + 11070: 654, + 11071: 654, + 11072: 654, + 11073: 654, + 11074: 654, + 11075: 654, + 11076: 654, + 11077: 654, + 11078: 654, + 11079: 654, + 11080: 654, + 11081: 654, + 11082: 654, + 11083: 654, + 11084: 654, + 11085: 654, + 11086: 654, + 11087: 654, + 11088: 654, + 11089: 654, + 11090: 654, + 11091: 654, + 11092: 654, + 11093: 654, + 11094: 654, + 11095: 654, + 11096: 654, + 11097: 654, + 11098: 654, + 11099: 654, + 11100: 654, + 11101: 654, + 11102: 654, + 11103: 654, + 11104: 654, + 11105: 654, + 11106: 654, + 11107: 654, + 11108: 654, + 11109: 654, + 11110: 654, + 11111: 654, + 11112: 654, + 11113: 654, + 11114: 654, + 11115: 654, + 11116: 654, + 11117: 654, + 11118: 654, + 11119: 654, + 11120: 654, + 11121: 654, + 11122: 654, + 11123: 654, + 11124: 654, + 11125: 654, + 11126: 654, + 11127: 654, + 11128: 654, + 11129: 654, + 11130: 654, + 11131: 654, + 11132: 654, + 11133: 654, + 11134: 654, + 11135: 654, + 11136: 654, + 11137: 654, + 11138: 654, + 11139: 654, + 11140: 654, + 11141: 654, + 11142: 654, + 11143: 654, + 11144: 654, + 11145: 654, + 11146: 654, + 11147: 654, + 11148: 654, + 11149: 654, + 11150: 654, + 11151: 654, + 11152: 654, + 11153: 654, + 11154: 654, + 11155: 654, + 11156: 654, + 11157: 654, + 11158: 654, + 11159: 654, + 11160: 654, + 11161: 654, + 11162: 654, + 11163: 654, + 11164: 654, + 11165: 654, + 11166: 654, + 11167: 654, + 11168: 654, + 11169: 654, + 11170: 654, + 11171: 654, + 11172: 654, + 11173: 654, + 11174: 654, + 11175: 654, + 11176: 654, + 11177: 654, + 11178: 654, + 11179: 654, + 11180: 654, + 11181: 654, + 11182: 654, + 11183: 654, + 11184: 654, + 11185: 654, + 11186: 654, + 11187: 654, + 11188: 654, + 11189: 654, + 11190: 654, + 11191: 654, + 11192: 654, + 11193: 654, + 11194: 654, + 11195: 655, + 11196: 655, + 11197: 655, + 11198: 655, + 11199: 655, + 11200: 655, + 11201: 655, + 11202: 655, + 11203: 655, + 11204: 655, + 11205: 655, + 11206: 655, + 11207: 655, + 11208: 655, + 11209: 655, + 11210: 655, + 11211: 655, + 11212: 655, + 11213: 655, + 11214: 655, + 11215: 655, + 11216: 655, + 11217: 655, + 11218: 655, + 11219: 655, + 11220: 655, + 11221: 655, + 11222: 655, + 11223: 655, + 11224: 655, + 11225: 655, + 11226: 655, + 11227: 655, + 11228: 655, + 11229: 655, + 11230: 655, + 11231: 655, + 11232: 655, + 11233: 655, + 11234: 655, + 11235: 655, + 11236: 655, + 11237: 655, + 11238: 655, + 11239: 655, + 11240: 655, + 11241: 655, + 11242: 655, + 11243: 655, + 11244: 655, + 11245: 655, + 11246: 655, + 11247: 655, + 11248: 655, + 11249: 655, + 11250: 655, + 11251: 655, + 11252: 655, + 11253: 655, + 11254: 655, + 11255: 655, + 11256: 655, + 11257: 655, + 11258: 655, + 11259: 655, + 11260: 655, + 11261: 655, + 11262: 655, + 11263: 655, + 11264: 655, + 11265: 655, + 11266: 655, + 11267: 655, + 11268: 655, + 11269: 655, + 11270: 655, + 11271: 655, + 11272: 655, + 11273: 655, + 11274: 655, + 11275: 655, + 11276: 655, + 11277: 655, + 11278: 655, + 11279: 655, + 11280: 655, + 11281: 655, + 11282: 655, + 11283: 655, + 11284: 655, + 11285: 655, + 11286: 655, + 11287: 655, + 11288: 655, + 11289: 655, + 11290: 655, + 11291: 655, + 11292: 655, + 11293: 655, + 11294: 655, + 11295: 655, + 11296: 655, + 11297: 655, + 11298: 655, + 11299: 655, + 11300: 655, + 11301: 655, + 11302: 655, + 11303: 655, + 11304: 655, + 11305: 655, + 11306: 655, + 11307: 655, + 11308: 655, + 11309: 655, + 11310: 655, + 11311: 655, + 11312: 655, + 11313: 655, + 11314: 655, + 11315: 655, + 11316: 655, + 11317: 655, + 11318: 655, + 11319: 655, + 11320: 655, + 11321: 655, + 11322: 655, + 11323: 655, + 11324: 655, + 11325: 655, + 11326: 655, + 11327: 655, + 11328: 655, + 11329: 655, + 11330: 655, + 11331: 655, + 11332: 655, + 11333: 655, + 11334: 655, + 11335: 655, + 11336: 655, + 11337: 655, + 11338: 655, + 11339: 655, + 11340: 655, + 11341: 655, + 11342: 655, + 11343: 655, + 11344: 655, + 11345: 655, + 11346: 655, + 11347: 655, + 11348: 655, + 11349: 655, + 11350: 655, + 11351: 655, + 11352: 655, + 11353: 655, + 11354: 655, + 11355: 655, + 11356: 655, + 11357: 655, + 11358: 655, + 11359: 655, + 11360: 655, + 11361: 655, + 11362: 655, + 11363: 655, + 11364: 655, + 11365: 655, + 11366: 655, + 11367: 655, + 11368: 655, + 11369: 655, + 11370: 655, + 11371: 655, + 11372: 655, + 11373: 655, + 11374: 655, + 11375: 655, + 11376: 655, + 11377: 655, + 11378: 655, + 11379: 655, + 11380: 655, + 11381: 655, + 11382: 655, + 11383: 655, + 11384: 655, + 11385: 655, + 11386: 655, + 11387: 655, + 11388: 655, + 11389: 655, + 11390: 655, + 11391: 655, + 11392: 655, + 11393: 655, + 11394: 655, + 11395: 655, + 11396: 655, + 11397: 655, + 11398: 655, + 11399: 655, + 11400: 655, + 11401: 655, + 11402: 655, + 11403: 655, + 11404: 655, + 11405: 655, + 11406: 655, + 11407: 655, + 11408: 655, + 11409: 655, + 11410: 655, + 11411: 655, + 11412: 655, + 11413: 655, + 11414: 655, + 11415: 655, + 11416: 655, + 11417: 655, + 11418: 655, + 11419: 655, + 11420: 655, + 11421: 655, + 11422: 655, + 11423: 655, + 11424: 655, + 11425: 655, + 11426: 655, + 11427: 655, + 11428: 655, + 11429: 655, + 11430: 655, + 11431: 655, + 11432: 655, + 11433: 655, + 11434: 655, + 11435: 655, + 11436: 655, + 11437: 655, + 11438: 655, + 11439: 655, + 11440: 655, + 11441: 655, + 11442: 655, + 11443: 655, + 11444: 655, + 11445: 655, + 11446: 655, + 11447: 655, + 11448: 655, + 11449: 655, + 11450: 655, + 11451: 655, + 11452: 655, + 11453: 655, + 11454: 655, + 11455: 655, + 11456: 655, + 11457: 655, + 11458: 655, + 11459: 655, + 11460: 655, + 11461: 655, + 11462: 655, + 11463: 655, + 11464: 655, + 11465: 655, + 11466: 655, + 11467: 655, + 11468: 655, + 11469: 655, + 11470: 655, + 11471: 655, + 11472: 655, + 11473: 655, + 11474: 655, + 11475: 655, + 11476: 655, + 11477: 655, + 11478: 655, + 11479: 655, + 11480: 655, + 11481: 655, + 11482: 655, + 11483: 655, + 11484: 655, + 11485: 655, + 11486: 655, + 11487: 655, + 11488: 655, + 11489: 655, + 11490: 655, + 11491: 655, + 11492: 655, + 11493: 655, + 11494: 655, + 11495: 655, + 11496: 655, + 11497: 655, + 11498: 655, + 11499: 655, + 11500: 655, + 11501: 655, + 11502: 655, + 11503: 655, + 11504: 655, + 11505: 655, + 11506: 655, + 11507: 655, + 11508: 655, + 11509: 655, + 11510: 655, + 11511: 655, + 11512: 655, + 11513: 655, + 11514: 655, + 11515: 655, + 11516: 655, + 11517: 655, + 11518: 655, + 11519: 656, + 11520: 656, + 11521: 656, + 11522: 656, + 11523: 656, + 11524: 656, + 11525: 656, + 11526: 656, + 11527: 656, + 11528: 656, + 11529: 656, + 11530: 656, + 11531: 656, + 11532: 656, + 11533: 656, + 11534: 656, + 11535: 656, + 11536: 656, + 11537: 656, + 11538: 656, + 11539: 656, + 11540: 656, + 11541: 656, + 11542: 656, + 11543: 656, + 11544: 656, + 11545: 656, + 11546: 656, + 11547: 656, + 11548: 656, + 11549: 656, + 11550: 656, + 11551: 656, + 11552: 656, + 11553: 656, + 11554: 656, + 11555: 656, + 11556: 656, + 11557: 656, + 11558: 656, + 11559: 656, + 11560: 656, + 11561: 656, + 11562: 656, + 11563: 656, + 11564: 656, + 11565: 656, + 11566: 656, + 11567: 656, + 11568: 656, + 11569: 656, + 11570: 656, + 11571: 656, + 11572: 656, + 11573: 656, + 11574: 656, + 11575: 656, + 11576: 656, + 11577: 656, + 11578: 656, + 11579: 656, + 11580: 656, + 11581: 656, + 11582: 656, + 11583: 656, + 11584: 656, + 11585: 656, + 11586: 656, + 11587: 656, + 11588: 656, + 11589: 656, + 11590: 656, + 11591: 656, + 11592: 656, + 11593: 656, + 11594: 656, + 11595: 656, + 11596: 656, + 11597: 656, + 11598: 656, + 11599: 656, + 11600: 656, + 11601: 656, + 11602: 656, + 11603: 656, + 11604: 656, + 11605: 656, + 11606: 656, + 11607: 656, + 11608: 656, + 11609: 656, + 11610: 656, + 11611: 656, + 11612: 656, + 11613: 656, + 11614: 656, + 11615: 656, + 11616: 656, + 11617: 656, + 11618: 656, + 11619: 656, + 11620: 656, + 11621: 656, + 11622: 656, + 11623: 656, + 11624: 656, + 11625: 656, + 11626: 656, + 11627: 656, + 11628: 656, + 11629: 656, + 11630: 656, + 11631: 656, + 11632: 656, + 11633: 656, + 11634: 656, + 11635: 656, + 11636: 656, + 11637: 656, + 11638: 656, + 11639: 656, + 11640: 656, + 11641: 656, + 11642: 656, + 11643: 656, + 11644: 656, + 11645: 656, + 11646: 656, + 11647: 656, + 11648: 656, + 11649: 656, + 11650: 656, + 11651: 656, + 11652: 656, + 11653: 656, + 11654: 656, + 11655: 656, + 11656: 656, + 11657: 656, + 11658: 656, + 11659: 656, + 11660: 656, + 11661: 656, + 11662: 656, + 11663: 656, + 11664: 656, + 11665: 656, + 11666: 656, + 11667: 656, + 11668: 656, + 11669: 656, + 11670: 656, + 11671: 656, + 11672: 656, + 11673: 656, + 11674: 656, + 11675: 656, + 11676: 656, + 11677: 656, + 11678: 656, + 11679: 656, + 11680: 656, + 11681: 656, + 11682: 656, + 11683: 656, + 11684: 656, + 11685: 656, + 11686: 656, + 11687: 656, + 11688: 656, + 11689: 656, + 11690: 656, + 11691: 656, + 11692: 656, + 11693: 656, + 11694: 656, + 11695: 656, + 11696: 656, + 11697: 656, + 11698: 656, + 11699: 656, + 11700: 656, + 11701: 656, + 11702: 656, + 11703: 656, + 11704: 656, + 11705: 656, + 11706: 656, + 11707: 656, + 11708: 656, + 11709: 656, + 11710: 656, + 11711: 656, + 11712: 656, + 11713: 656, + 11714: 656, + 11715: 656, + 11716: 656, + 11717: 656, + 11718: 656, + 11719: 656, + 11720: 656, + 11721: 656, + 11722: 656, + 11723: 656, + 11724: 656, + 11725: 656, + 11726: 656, + 11727: 656, + 11728: 656, + 11729: 656, + 11730: 656, + 11731: 656, + 11732: 656, + 11733: 656, + 11734: 656, + 11735: 656, + 11736: 656, + 11737: 656, + 11738: 656, + 11739: 656, + 11740: 656, + 11741: 656, + 11742: 656, + 11743: 656, + 11744: 656, + 11745: 656, + 11746: 656, + 11747: 656, + 11748: 656, + 11749: 656, + 11750: 656, + 11751: 656, + 11752: 656, + 11753: 656, + 11754: 656, + 11755: 656, + 11756: 656, + 11757: 656, + 11758: 656, + 11759: 656, + 11760: 656, + 11761: 656, + 11762: 656, + 11763: 656, + 11764: 656, + 11765: 656, + 11766: 656, + 11767: 656, + 11768: 656, + 11769: 656, + 11770: 656, + 11771: 656, + 11772: 656, + 11773: 656, + 11774: 656, + 11775: 656, + 11776: 656, + 11777: 656, + 11778: 656, + 11779: 656, + 11780: 656, + 11781: 656, + 11782: 656, + 11783: 656, + 11784: 656, + 11785: 656, + 11786: 656, + 11787: 656, + 11788: 656, + 11789: 656, + 11790: 656, + 11791: 656, + 11792: 656, + 11793: 656, + 11794: 656, + 11795: 656, + 11796: 656, + 11797: 656, + 11798: 656, + 11799: 656, + 11800: 656, + 11801: 656, + 11802: 656, + 11803: 656, + 11804: 656, + 11805: 656, + 11806: 656, + 11807: 656, + 11808: 656, + 11809: 656, + 11810: 656, + 11811: 656, + 11812: 656, + 11813: 656, + 11814: 656, + 11815: 656, + 11816: 656, + 11817: 656, + 11818: 656, + 11819: 656, + 11820: 656, + 11821: 656, + 11822: 656, + 11823: 656, + 11824: 656, + 11825: 656, + 11826: 656, + 11827: 656, + 11828: 656, + 11829: 656, + 11830: 656, + 11831: 656, + 11832: 656, + 11833: 656, + 11834: 656, + 11835: 656, + 11836: 656, + 11837: 656, + 11838: 656, + 11839: 656, + 11840: 656, + 11841: 656, + 11842: 656, + 11843: 657, + 11844: 657, + 11845: 657, + 11846: 657, + 11847: 657, + 11848: 657, + 11849: 657, + 11850: 657, + 11851: 657, + 11852: 657, + 11853: 657, + 11854: 657, + 11855: 657, + 11856: 657, + 11857: 657, + 11858: 657, + 11859: 657, + 11860: 657, + 11861: 657, + 11862: 657, + 11863: 657, + 11864: 657, + 11865: 657, + 11866: 657, + 11867: 657, + 11868: 657, + 11869: 657, + 11870: 657, + 11871: 657, + 11872: 657, + 11873: 657, + 11874: 657, + 11875: 657, + 11876: 657, + 11877: 657, + 11878: 657, + 11879: 657, + 11880: 657, + 11881: 657, + 11882: 657, + 11883: 657, + 11884: 657, + 11885: 657, + 11886: 657, + 11887: 657, + 11888: 657, + 11889: 657, + 11890: 657, + 11891: 657, + 11892: 657, + 11893: 657, + 11894: 657, + 11895: 657, + 11896: 657, + 11897: 657, + 11898: 657, + 11899: 657, + 11900: 657, + 11901: 657, + 11902: 657, + 11903: 657, + 11904: 657, + 11905: 657, + 11906: 657, + 11907: 657, + 11908: 657, + 11909: 657, + 11910: 657, + 11911: 657, + 11912: 657, + 11913: 657, + 11914: 657, + 11915: 657, + 11916: 657, + 11917: 657, + 11918: 657, + 11919: 657, + 11920: 657, + 11921: 657, + 11922: 657, + 11923: 657, + 11924: 657, + 11925: 657, + 11926: 657, + 11927: 657, + 11928: 657, + 11929: 657, + 11930: 657, + 11931: 657, + 11932: 657, + 11933: 657, + 11934: 657, + 11935: 657, + 11936: 657, + 11937: 657, + 11938: 657, + 11939: 657, + 11940: 657, + 11941: 657, + 11942: 657, + 11943: 657, + 11944: 657, + 11945: 657, + 11946: 657, + 11947: 657, + 11948: 657, + 11949: 657, + 11950: 657, + 11951: 657, + 11952: 657, + 11953: 657, + 11954: 657, + 11955: 657, + 11956: 657, + 11957: 657, + 11958: 657, + 11959: 657, + 11960: 657, + 11961: 657, + 11962: 657, + 11963: 657, + 11964: 657, + 11965: 657, + 11966: 657, + 11967: 657, + 11968: 657, + 11969: 657, + 11970: 657, + 11971: 657, + 11972: 657, + 11973: 657, + 11974: 657, + 11975: 657, + 11976: 657, + 11977: 657, + 11978: 657, + 11979: 657, + 11980: 657, + 11981: 657, + 11982: 657, + 11983: 657, + 11984: 657, + 11985: 657, + 11986: 657, + 11987: 657, + 11988: 657, + 11989: 657, + 11990: 657, + 11991: 657, + 11992: 657, + 11993: 657, + 11994: 657, + 11995: 657, + 11996: 657, + 11997: 657, + 11998: 657, + 11999: 657, + 12000: 657, + 12001: 657, + 12002: 657, + 12003: 657, + 12004: 657, + 12005: 657, + 12006: 657, + 12007: 657, + 12008: 657, + 12009: 657, + 12010: 657, + 12011: 657, + 12012: 657, + 12013: 657, + 12014: 657, + 12015: 657, + 12016: 657, + 12017: 657, + 12018: 657, + 12019: 657, + 12020: 657, + 12021: 657, + 12022: 657, + 12023: 657, + 12024: 657, + 12025: 657, + 12026: 657, + 12027: 657, + 12028: 657, + 12029: 657, + 12030: 657, + 12031: 657, + 12032: 657, + 12033: 657, + 12034: 657, + 12035: 657, + 12036: 657, + 12037: 657, + 12038: 657, + 12039: 657, + 12040: 657, + 12041: 657, + 12042: 657, + 12043: 657, + 12044: 657, + 12045: 657, + 12046: 657, + 12047: 657, + 12048: 657, + 12049: 657, + 12050: 657, + 12051: 657, + 12052: 657, + 12053: 657, + 12054: 657, + 12055: 657, + 12056: 657, + 12057: 657, + 12058: 657, + 12059: 657, + 12060: 657, + 12061: 657, + 12062: 657, + 12063: 657, + 12064: 657, + 12065: 657, + 12066: 657, + 12067: 657, + 12068: 657, + 12069: 657, + 12070: 657, + 12071: 657, + 12072: 657, + 12073: 657, + 12074: 657, + 12075: 657, + 12076: 657, + 12077: 657, + 12078: 657, + 12079: 657, + 12080: 657, + 12081: 657, + 12082: 657, + 12083: 657, + 12084: 657, + 12085: 657, + 12086: 657, + 12087: 657, + 12088: 657, + 12089: 657, + 12090: 657, + 12091: 657, + 12092: 657, + 12093: 657, + 12094: 657, + 12095: 657, + 12096: 657, + 12097: 657, + 12098: 657, + 12099: 657, + 12100: 657, + 12101: 657, + 12102: 657, + 12103: 657, + 12104: 657, + 12105: 657, + 12106: 657, + 12107: 657, + 12108: 657, + 12109: 657, + 12110: 657, + 12111: 657, + 12112: 657, + 12113: 657, + 12114: 657, + 12115: 657, + 12116: 657, + 12117: 657, + 12118: 657, + 12119: 657, + 12120: 657, + 12121: 657, + 12122: 657, + 12123: 657, + 12124: 657, + 12125: 657, + 12126: 657, + 12127: 657, + 12128: 657, + 12129: 657, + 12130: 657, + 12131: 657, + 12132: 657, + 12133: 657, + 12134: 657, + 12135: 657, + 12136: 657, + 12137: 657, + 12138: 657, + 12139: 657, + 12140: 657, + 12141: 657, + 12142: 657, + 12143: 657, + 12144: 657, + 12145: 657, + 12146: 657, + 12147: 657, + 12148: 657, + 12149: 657, + 12150: 657, + 12151: 657, + 12152: 657, + 12153: 657, + 12154: 657, + 12155: 657, + 12156: 657, + 12157: 657, + 12158: 657, + 12159: 657, + 12160: 657, + 12161: 657, + 12162: 657, + 12163: 657, + 12164: 657, + 12165: 657, + 12166: 657, + 12167: 658, + 12168: 658, + 12169: 658, + 12170: 658, + 12171: 658, + 12172: 658, + 12173: 658, + 12174: 658, + 12175: 658, + 12176: 658, + 12177: 658, + 12178: 658, + 12179: 658, + 12180: 658, + 12181: 658, + 12182: 658, + 12183: 658, + 12184: 658, + 12185: 658, + 12186: 658, + 12187: 658, + 12188: 658, + 12189: 658, + 12190: 658, + 12191: 658, + 12192: 658, + 12193: 658, + 12194: 658, + 12195: 658, + 12196: 658, + 12197: 658, + 12198: 658, + 12199: 658, + 12200: 658, + 12201: 658, + 12202: 658, + 12203: 658, + 12204: 658, + 12205: 658, + 12206: 658, + 12207: 658, + 12208: 658, + 12209: 658, + 12210: 658, + 12211: 658, + 12212: 658, + 12213: 658, + 12214: 658, + 12215: 658, + 12216: 658, + 12217: 658, + 12218: 658, + 12219: 658, + 12220: 658, + 12221: 658, + 12222: 658, + 12223: 658, + 12224: 658, + 12225: 658, + 12226: 658, + 12227: 658, + 12228: 658, + 12229: 658, + 12230: 658, + 12231: 658, + 12232: 658, + 12233: 658, + 12234: 658, + 12235: 658, + 12236: 658, + 12237: 658, + 12238: 658, + 12239: 658, + 12240: 658, + 12241: 658, + 12242: 658, + 12243: 658, + 12244: 658, + 12245: 658, + 12246: 658, + 12247: 658, + 12248: 658, + 12249: 658, + 12250: 658, + 12251: 658, + 12252: 658, + 12253: 658, + 12254: 658, + 12255: 658, + 12256: 658, + 12257: 658, + 12258: 658, + 12259: 658, + 12260: 658, + 12261: 658, + 12262: 658, + 12263: 658, + 12264: 658, + 12265: 658, + 12266: 658, + 12267: 658, + 12268: 658, + 12269: 658, + 12270: 658, + 12271: 658, + 12272: 658, + 12273: 658, + 12274: 658, + 12275: 658, + 12276: 658, + 12277: 658, + 12278: 658, + 12279: 658, + 12280: 658, + 12281: 658, + 12282: 658, + 12283: 658, + 12284: 658, + 12285: 658, + 12286: 658, + 12287: 658, + 12288: 658, + 12289: 658, + 12290: 658, + 12291: 658, + 12292: 658, + 12293: 658, + 12294: 658, + 12295: 658, + 12296: 658, + 12297: 658, + 12298: 658, + 12299: 658, + 12300: 658, + 12301: 658, + 12302: 658, + 12303: 658, + 12304: 658, + 12305: 658, + 12306: 658, + 12307: 658, + 12308: 658, + 12309: 658, + 12310: 658, + 12311: 658, + 12312: 658, + 12313: 658, + 12314: 658, + 12315: 658, + 12316: 658, + 12317: 658, + 12318: 658, + 12319: 658, + 12320: 658, + 12321: 658, + 12322: 658, + 12323: 658, + 12324: 658, + 12325: 658, + 12326: 658, + 12327: 658, + 12328: 658, + 12329: 658, + 12330: 658, + 12331: 658, + 12332: 658, + 12333: 658, + 12334: 658, + 12335: 658, + 12336: 658, + 12337: 658, + 12338: 658, + 12339: 658, + 12340: 658, + 12341: 658, + 12342: 658, + 12343: 658, + 12344: 658, + 12345: 658, + 12346: 658, + 12347: 658, + 12348: 658, + 12349: 658, + 12350: 658, + 12351: 658, + 12352: 658, + 12353: 658, + 12354: 658, + 12355: 658, + 12356: 658, + 12357: 658, + 12358: 658, + 12359: 658, + 12360: 658, + 12361: 658, + 12362: 658, + 12363: 658, + 12364: 658, + 12365: 658, + 12366: 658, + 12367: 658, + 12368: 658, + 12369: 658, + 12370: 658, + 12371: 658, + 12372: 658, + 12373: 658, + 12374: 658, + 12375: 658, + 12376: 658, + 12377: 658, + 12378: 658, + 12379: 658, + 12380: 658, + 12381: 658, + 12382: 658, + 12383: 658, + 12384: 658, + 12385: 658, + 12386: 658, + 12387: 658, + 12388: 658, + 12389: 658, + 12390: 658, + 12391: 658, + 12392: 658, + 12393: 658, + 12394: 658, + 12395: 658, + 12396: 658, + 12397: 658, + 12398: 658, + 12399: 658, + 12400: 658, + 12401: 658, + 12402: 658, + 12403: 658, + 12404: 658, + 12405: 658, + 12406: 658, + 12407: 658, + 12408: 658, + 12409: 658, + 12410: 658, + 12411: 658, + 12412: 658, + 12413: 658, + 12414: 658, + 12415: 658, + 12416: 658, + 12417: 658, + 12418: 658, + 12419: 658, + 12420: 658, + 12421: 658, + 12422: 658, + 12423: 658, + 12424: 658, + 12425: 658, + 12426: 658, + 12427: 658, + 12428: 658, + 12429: 658, + 12430: 658, + 12431: 658, + 12432: 658, + 12433: 658, + 12434: 658, + 12435: 658, + 12436: 658, + 12437: 658, + 12438: 658, + 12439: 658, + 12440: 658, + 12441: 658, + 12442: 658, + 12443: 658, + 12444: 658, + 12445: 658, + 12446: 658, + 12447: 658, + 12448: 658, + 12449: 658, + 12450: 658, + 12451: 658, + 12452: 658, + 12453: 658, + 12454: 658, + 12455: 658, + 12456: 658, + 12457: 658, + 12458: 658, + 12459: 658, + 12460: 658, + 12461: 658, + 12462: 658, + 12463: 658, + 12464: 658, + 12465: 658, + 12466: 658, + 12467: 658, + 12468: 658, + 12469: 658, + 12470: 658, + 12471: 658, + 12472: 658, + 12473: 658, + 12474: 658, + 12475: 658, + 12476: 658, + 12477: 658, + 12478: 658, + 12479: 658, + 12480: 658, + 12481: 658, + 12482: 658, + 12483: 658, + 12484: 658, + 12485: 658, + 12486: 658, + 12487: 658, + 12488: 658, + 12489: 658, + 12490: 658, + 12491: 659, + 12492: 659, + 12493: 659, + 12494: 659, + 12495: 659, + 12496: 659, + 12497: 659, + 12498: 659, + 12499: 659, + 12500: 659, + 12501: 659, + 12502: 659, + 12503: 659, + 12504: 659, + 12505: 659, + 12506: 659, + 12507: 659, + 12508: 659, + 12509: 659, + 12510: 659, + 12511: 659, + 12512: 659, + 12513: 659, + 12514: 659, + 12515: 659, + 12516: 659, + 12517: 659, + 12518: 659, + 12519: 659, + 12520: 659, + 12521: 659, + 12522: 659, + 12523: 659, + 12524: 659, + 12525: 659, + 12526: 659, + 12527: 659, + 12528: 659, + 12529: 659, + 12530: 659, + 12531: 659, + 12532: 659, + 12533: 659, + 12534: 659, + 12535: 659, + 12536: 659, + 12537: 659, + 12538: 659, + 12539: 659, + 12540: 659, + 12541: 659, + 12542: 659, + 12543: 659, + 12544: 659, + 12545: 659, + 12546: 659, + 12547: 659, + 12548: 659, + 12549: 659, + 12550: 659, + 12551: 659, + 12552: 659, + 12553: 659, + 12554: 659, + 12555: 659, + 12556: 659, + 12557: 659, + 12558: 659, + 12559: 659, + 12560: 659, + 12561: 659, + 12562: 659, + 12563: 659, + 12564: 659, + 12565: 659, + 12566: 659, + 12567: 659, + 12568: 659, + 12569: 659, + 12570: 659, + 12571: 659, + 12572: 659, + 12573: 659, + 12574: 659, + 12575: 659, + 12576: 659, + 12577: 659, + 12578: 659, + 12579: 659, + 12580: 659, + 12581: 659, + 12582: 659, + 12583: 659, + 12584: 659, + 12585: 659, + 12586: 659, + 12587: 659, + 12588: 659, + 12589: 659, + 12590: 659, + 12591: 659, + 12592: 659, + 12593: 659, + 12594: 659, + 12595: 659, + 12596: 659, + 12597: 659, + 12598: 659, + 12599: 659, + 12600: 659, + 12601: 659, + 12602: 659, + 12603: 659, + 12604: 659, + 12605: 659, + 12606: 659, + 12607: 659, + 12608: 659, + 12609: 659, + 12610: 659, + 12611: 659, + 12612: 659, + 12613: 659, + 12614: 659, + 12615: 659, + 12616: 659, + 12617: 659, + 12618: 659, + 12619: 659, + 12620: 659, + 12621: 659, + 12622: 659, + 12623: 659, + 12624: 659, + 12625: 659, + 12626: 659, + 12627: 659, + 12628: 659, + 12629: 659, + 12630: 659, + 12631: 659, + 12632: 659, + 12633: 659, + 12634: 659, + 12635: 659, + 12636: 659, + 12637: 659, + 12638: 659, + 12639: 659, + 12640: 659, + 12641: 659, + 12642: 659, + 12643: 659, + 12644: 659, + 12645: 659, + 12646: 659, + 12647: 659, + 12648: 659, + 12649: 659, + 12650: 659, + 12651: 659, + 12652: 659, + 12653: 659, + 12654: 659, + 12655: 659, + 12656: 659, + 12657: 659, + 12658: 659, + 12659: 659, + 12660: 659, + 12661: 659, + 12662: 659, + 12663: 659, + 12664: 659, + 12665: 659, + 12666: 659, + 12667: 659, + 12668: 659, + 12669: 659, + 12670: 659, + 12671: 659, + 12672: 659, + 12673: 659, + 12674: 659, + 12675: 659, + 12676: 659, + 12677: 659, + 12678: 659, + 12679: 659, + 12680: 659, + 12681: 659, + 12682: 659, + 12683: 659, + 12684: 659, + 12685: 659, + 12686: 659, + 12687: 659, + 12688: 659, + 12689: 659, + 12690: 659, + 12691: 659, + 12692: 659, + 12693: 659, + 12694: 659, + 12695: 659, + 12696: 659, + 12697: 659, + 12698: 659, + 12699: 659, + 12700: 659, + 12701: 659, + 12702: 659, + 12703: 659, + 12704: 659, + 12705: 659, + 12706: 659, + 12707: 659, + 12708: 659, + 12709: 659, + 12710: 659, + 12711: 659, + 12712: 659, + 12713: 659, + 12714: 659, + 12715: 659, + 12716: 659, + 12717: 659, + 12718: 659, + 12719: 659, + 12720: 659, + 12721: 659, + 12722: 659, + 12723: 659, + 12724: 659, + 12725: 659, + 12726: 659, + 12727: 659, + 12728: 659, + 12729: 659, + 12730: 659, + 12731: 659, + 12732: 659, + 12733: 659, + 12734: 659, + 12735: 659, + 12736: 659, + 12737: 659, + 12738: 659, + 12739: 659, + 12740: 659, + 12741: 659, + 12742: 659, + 12743: 659, + 12744: 659, + 12745: 659, + 12746: 659, + 12747: 659, + 12748: 659, + 12749: 659, + 12750: 659, + 12751: 659, + 12752: 659, + 12753: 659, + 12754: 659, + 12755: 659, + 12756: 659, + 12757: 659, + 12758: 659, + 12759: 659, + 12760: 659, + 12761: 659, + 12762: 659, + 12763: 659, + 12764: 659, + 12765: 659, + 12766: 659, + 12767: 659, + 12768: 659, + 12769: 659, + 12770: 659, + 12771: 659, + 12772: 659, + 12773: 659, + 12774: 659, + 12775: 659, + 12776: 659, + 12777: 659, + 12778: 659, + 12779: 659, + 12780: 659, + 12781: 659, + 12782: 659, + 12783: 659, + 12784: 659, + 12785: 659, + 12786: 659, + 12787: 659, + 12788: 659, + 12789: 659, + 12790: 659, + 12791: 659, + 12792: 659, + 12793: 659, + 12794: 659, + 12795: 659, + 12796: 659, + 12797: 659, + 12798: 659, + 12799: 659, + 12800: 659, + 12801: 659, + 12802: 659, + 12803: 659, + 12804: 659, + 12805: 659, + 12806: 659, + 12807: 659, + 12808: 659, + 12809: 659, + 12810: 659, + 12811: 659, + 12812: 659, + 12813: 659, + 12814: 659, + 12815: 660, + 12816: 660, + 12817: 660, + 12818: 660, + 12819: 660, + 12820: 660, + 12821: 660, + 12822: 660, + 12823: 660, + 12824: 660, + 12825: 660, + 12826: 660, + 12827: 660, + 12828: 660, + 12829: 660, + 12830: 660, + 12831: 660, + 12832: 660, + 12833: 660, + 12834: 660, + 12835: 660, + 12836: 660, + 12837: 660, + 12838: 660, + 12839: 660, + 12840: 660, + 12841: 660, + 12842: 660, + 12843: 660, + 12844: 660, + 12845: 660, + 12846: 660, + 12847: 660, + 12848: 660, + 12849: 660, + 12850: 660, + 12851: 660, + 12852: 660, + 12853: 660, + 12854: 660, + 12855: 660, + 12856: 660, + 12857: 660, + 12858: 660, + 12859: 660, + 12860: 660, + 12861: 660, + 12862: 660, + 12863: 660, + 12864: 660, + 12865: 660, + 12866: 660, + 12867: 660, + 12868: 660, + 12869: 660, + 12870: 660, + 12871: 660, + 12872: 660, + 12873: 660, + 12874: 660, + 12875: 660, + 12876: 660, + 12877: 660, + 12878: 660, + 12879: 660, + 12880: 660, + 12881: 660, + 12882: 660, + 12883: 660, + 12884: 660, + 12885: 660, + 12886: 660, + 12887: 660, + 12888: 660, + 12889: 660, + 12890: 660, + 12891: 660, + 12892: 660, + 12893: 660, + 12894: 660, + 12895: 660, + 12896: 660, + 12897: 660, + 12898: 660, + 12899: 660, + 12900: 660, + 12901: 660, + 12902: 660, + 12903: 660, + 12904: 660, + 12905: 660, + 12906: 660, + 12907: 660, + 12908: 660, + 12909: 660, + 12910: 660, + 12911: 660, + 12912: 660, + 12913: 660, + 12914: 660, + 12915: 660, + 12916: 660, + 12917: 660, + 12918: 660, + 12919: 660, + 12920: 660, + 12921: 660, + 12922: 660, + 12923: 660, + 12924: 660, + 12925: 660, + 12926: 660, + 12927: 660, + 12928: 660, + 12929: 660, + 12930: 660, + 12931: 660, + 12932: 660, + 12933: 660, + 12934: 660, + 12935: 660, + 12936: 660, + 12937: 660, + 12938: 660, + 12939: 660, + 12940: 660, + 12941: 660, + 12942: 660, + 12943: 660, + 12944: 660, + 12945: 660, + 12946: 660, + 12947: 660, + 12948: 660, + 12949: 660, + 12950: 660, + 12951: 660, + 12952: 660, + 12953: 660, + 12954: 660, + 12955: 660, + 12956: 660, + 12957: 660, + 12958: 660, + 12959: 660, + 12960: 660, + 12961: 660, + 12962: 660, + 12963: 660, + 12964: 660, + 12965: 660, + 12966: 660, + 12967: 660, + 12968: 660, + 12969: 660, + 12970: 660, + 12971: 660, + 12972: 660, + 12973: 660, + 12974: 660, + 12975: 660, + 12976: 660, + 12977: 660, + 12978: 660, + 12979: 660, + 12980: 660, + 12981: 660, + 12982: 660, + 12983: 660, + 12984: 660, + 12985: 660, + 12986: 660, + 12987: 660, + 12988: 660, + 12989: 660, + 12990: 660, + 12991: 660, + 12992: 660, + 12993: 660, + 12994: 660, + 12995: 660, + 12996: 660, + 12997: 660, + 12998: 660, + 12999: 660, + 13000: 660, + 13001: 660, + 13002: 660, + 13003: 660, + 13004: 660, + 13005: 660, + 13006: 660, + 13007: 660, + 13008: 660, + 13009: 660, + 13010: 660, + 13011: 660, + 13012: 660, + 13013: 660, + 13014: 660, + 13015: 660, + 13016: 660, + 13017: 660, + 13018: 660, + 13019: 660, + 13020: 660, + 13021: 660, + 13022: 660, + 13023: 660, + 13024: 660, + 13025: 660, + 13026: 660, + 13027: 660, + 13028: 660, + 13029: 660, + 13030: 660, + 13031: 660, + 13032: 660, + 13033: 660, + 13034: 660, + 13035: 660, + 13036: 660, + 13037: 660, + 13038: 660, + 13039: 660, + 13040: 660, + 13041: 660, + 13042: 660, + 13043: 660, + 13044: 660, + 13045: 660, + 13046: 660, + 13047: 660, + 13048: 660, + 13049: 660, + 13050: 660, + 13051: 660, + 13052: 660, + 13053: 660, + 13054: 660, + 13055: 660, + 13056: 660, + 13057: 660, + 13058: 660, + 13059: 660, + 13060: 660, + 13061: 660, + 13062: 660, + 13063: 660, + 13064: 660, + 13065: 660, + 13066: 660, + 13067: 660, + 13068: 660, + 13069: 660, + 13070: 660, + 13071: 660, + 13072: 660, + 13073: 660, + 13074: 660, + 13075: 660, + 13076: 660, + 13077: 660, + 13078: 660, + 13079: 660, + 13080: 660, + 13081: 660, + 13082: 660, + 13083: 660, + 13084: 660, + 13085: 660, + 13086: 660, + 13087: 660, + 13088: 660, + 13089: 660, + 13090: 660, + 13091: 660, + 13092: 660, + 13093: 660, + 13094: 660, + 13095: 660, + 13096: 660, + 13097: 660, + 13098: 660, + 13099: 660, + 13100: 660, + 13101: 660, + 13102: 660, + 13103: 660, + 13104: 660, + 13105: 660, + 13106: 660, + 13107: 660, + 13108: 660, + 13109: 660, + 13110: 660, + 13111: 660, + 13112: 660, + 13113: 660, + 13114: 660, + 13115: 660, + 13116: 660, + 13117: 660, + 13118: 660, + 13119: 660, + 13120: 660, + 13121: 660, + 13122: 660, + 13123: 660, + 13124: 660, + 13125: 660, + 13126: 660, + 13127: 660, + 13128: 660, + 13129: 660, + 13130: 660, + 13131: 660, + 13132: 660, + 13133: 660, + 13134: 660, + 13135: 660, + 13136: 660, + 13137: 660, + 13138: 660, + 13139: 661, + 13140: 661, + 13141: 661, + 13142: 661, + 13143: 661, + 13144: 661, + 13145: 661, + 13146: 661, + 13147: 661, + 13148: 661, + 13149: 661, + 13150: 661, + 13151: 661, + 13152: 661, + 13153: 661, + 13154: 661, + 13155: 661, + 13156: 661, + 13157: 661, + 13158: 661, + 13159: 661, + 13160: 661, + 13161: 661, + 13162: 661, + 13163: 661, + 13164: 661, + 13165: 661, + 13166: 661, + 13167: 661, + 13168: 661, + 13169: 661, + 13170: 661, + 13171: 661, + 13172: 661, + 13173: 661, + 13174: 661, + 13175: 661, + 13176: 661, + 13177: 661, + 13178: 661, + 13179: 661, + 13180: 661, + 13181: 661, + 13182: 661, + 13183: 661, + 13184: 661, + 13185: 661, + 13186: 661, + 13187: 661, + 13188: 661, + 13189: 661, + 13190: 661, + 13191: 661, + 13192: 661, + 13193: 661, + 13194: 661, + 13195: 661, + 13196: 661, + 13197: 661, + 13198: 661, + 13199: 661, + 13200: 661, + 13201: 661, + 13202: 661, + 13203: 661, + 13204: 661, + 13205: 661, + 13206: 661, + 13207: 661, + 13208: 661, + 13209: 661, + 13210: 661, + 13211: 661, + 13212: 661, + 13213: 661, + 13214: 661, + 13215: 661, + 13216: 661, + 13217: 661, + 13218: 661, + 13219: 661, + 13220: 661, + 13221: 661, + 13222: 661, + 13223: 661, + 13224: 661, + 13225: 661, + 13226: 661, + 13227: 661, + 13228: 661, + 13229: 661, + 13230: 661, + 13231: 661, + 13232: 661, + 13233: 661, + 13234: 661, + 13235: 661, + 13236: 661, + 13237: 661, + 13238: 661, + 13239: 661, + 13240: 661, + 13241: 661, + 13242: 661, + 13243: 661, + 13244: 661, + 13245: 661, + 13246: 661, + 13247: 661, + 13248: 661, + 13249: 661, + 13250: 661, + 13251: 661, + 13252: 661, + 13253: 661, + 13254: 661, + 13255: 661, + 13256: 661, + 13257: 661, + 13258: 661, + 13259: 661, + 13260: 661, + 13261: 661, + 13262: 661, + 13263: 661, + 13264: 661, + 13265: 661, + 13266: 661, + 13267: 661, + 13268: 661, + 13269: 661, + 13270: 661, + 13271: 661, + 13272: 661, + 13273: 661, + 13274: 661, + 13275: 661, + 13276: 661, + 13277: 661, + 13278: 661, + 13279: 661, + 13280: 661, + 13281: 661, + 13282: 661, + 13283: 661, + 13284: 661, + 13285: 661, + 13286: 661, + 13287: 661, + 13288: 661, + 13289: 661, + 13290: 661, + 13291: 661, + 13292: 661, + 13293: 661, + 13294: 661, + 13295: 661, + 13296: 661, + 13297: 661, + 13298: 661, + 13299: 661, + 13300: 661, + 13301: 661, + 13302: 661, + 13303: 661, + 13304: 661, + 13305: 661, + 13306: 661, + 13307: 661, + 13308: 661, + 13309: 661, + 13310: 661, + 13311: 661, + 13312: 661, + 13313: 661, + 13314: 661, + 13315: 661, + 13316: 661, + 13317: 661, + 13318: 661, + 13319: 661, + 13320: 661, + 13321: 661, + 13322: 661, + 13323: 661, + 13324: 661, + 13325: 661, + 13326: 661, + 13327: 661, + 13328: 661, + 13329: 661, + 13330: 661, + 13331: 661, + 13332: 661, + 13333: 661, + 13334: 661, + 13335: 661, + 13336: 661, + 13337: 661, + 13338: 661, + 13339: 661, + 13340: 661, + 13341: 661, + 13342: 661, + 13343: 661, + 13344: 661, + 13345: 661, + 13346: 661, + 13347: 661, + 13348: 661, + 13349: 661, + 13350: 661, + 13351: 661, + 13352: 661, + 13353: 661, + 13354: 661, + 13355: 661, + 13356: 661, + 13357: 661, + 13358: 661, + 13359: 661, + 13360: 661, + 13361: 661, + 13362: 661, + 13363: 661, + 13364: 661, + 13365: 661, + 13366: 661, + 13367: 661, + 13368: 661, + 13369: 661, + 13370: 661, + 13371: 661, + 13372: 661, + 13373: 661, + 13374: 661, + 13375: 661, + 13376: 661, + 13377: 661, + 13378: 661, + 13379: 661, + 13380: 661, + 13381: 661, + 13382: 661, + 13383: 661, + 13384: 661, + 13385: 661, + 13386: 661, + 13387: 661, + 13388: 661, + 13389: 661, + 13390: 661, + 13391: 661, + 13392: 661, + 13393: 661, + 13394: 661, + 13395: 661, + 13396: 661, + 13397: 661, + 13398: 661, + 13399: 661, + 13400: 661, + 13401: 661, + 13402: 661, + 13403: 661, + 13404: 661, + 13405: 661, + 13406: 661, + 13407: 661, + 13408: 661, + 13409: 661, + 13410: 661, + 13411: 661, + 13412: 661, + 13413: 661, + 13414: 661, + 13415: 661, + 13416: 661, + 13417: 661, + 13418: 661, + 13419: 661, + 13420: 661, + 13421: 661, + 13422: 661, + 13423: 661, + 13424: 661, + 13425: 661, + 13426: 661, + 13427: 661, + 13428: 661, + 13429: 661, + 13430: 661, + 13431: 661, + 13432: 661, + 13433: 661, + 13434: 661, + 13435: 661, + 13436: 661, + 13437: 661, + 13438: 661, + 13439: 661, + 13440: 661, + 13441: 661, + 13442: 661, + 13443: 661, + 13444: 661, + 13445: 661, + 13446: 661, + 13447: 661, + 13448: 661, + 13449: 661, + 13450: 661, + 13451: 661, + 13452: 661, + 13453: 661, + 13454: 661, + 13455: 661, + 13456: 661, + 13457: 661, + 13458: 661, + 13459: 661, + 13460: 661, + 13461: 661, + 13462: 661, + 13463: 662, + 13464: 662, + 13465: 662, + 13466: 662, + 13467: 662, + 13468: 662, + 13469: 662, + 13470: 662, + 13471: 662, + 13472: 662, + 13473: 662, + 13474: 662, + 13475: 662, + 13476: 662, + 13477: 662, + 13478: 662, + 13479: 662, + 13480: 662, + 13481: 662, + 13482: 662, + 13483: 662, + 13484: 662, + 13485: 662, + 13486: 662, + 13487: 662, + 13488: 662, + 13489: 662, + 13490: 662, + 13491: 662, + 13492: 662, + 13493: 662, + 13494: 662, + 13495: 662, + 13496: 662, + 13497: 662, + 13498: 662, + 13499: 662, + 13500: 662, + 13501: 662, + 13502: 662, + 13503: 662, + 13504: 662, + 13505: 662, + 13506: 662, + 13507: 662, + 13508: 662, + 13509: 662, + 13510: 662, + 13511: 662, + 13512: 662, + 13513: 662, + 13514: 662, + 13515: 662, + 13516: 662, + 13517: 662, + 13518: 662, + 13519: 662, + 13520: 662, + 13521: 662, + 13522: 662, + 13523: 662, + 13524: 662, + 13525: 662, + 13526: 662, + 13527: 662, + 13528: 662, + 13529: 662, + 13530: 662, + 13531: 662, + 13532: 662, + 13533: 662, + 13534: 662, + 13535: 662, + 13536: 662, + 13537: 662, + 13538: 662, + 13539: 662, + 13540: 662, + 13541: 662, + 13542: 662, + 13543: 662, + 13544: 662, + 13545: 662, + 13546: 662, + 13547: 662, + 13548: 662, + 13549: 662, + 13550: 662, + 13551: 662, + 13552: 662, + 13553: 662, + 13554: 662, + 13555: 662, + 13556: 662, + 13557: 662, + 13558: 662, + 13559: 662, + 13560: 662, + 13561: 662, + 13562: 662, + 13563: 662, + 13564: 662, + 13565: 662, + 13566: 662, + 13567: 662, + 13568: 662, + 13569: 662, + 13570: 662, + 13571: 662, + 13572: 662, + 13573: 662, + 13574: 662, + 13575: 662, + 13576: 662, + 13577: 662, + 13578: 662, + 13579: 662, + 13580: 662, + 13581: 662, + 13582: 662, + 13583: 662, + 13584: 662, + 13585: 662, + 13586: 662, + 13587: 662, + 13588: 662, + 13589: 662, + 13590: 662, + 13591: 662, + 13592: 662, + 13593: 662, + 13594: 662, + 13595: 662, + 13596: 662, + 13597: 662, + 13598: 662, + 13599: 662, + 13600: 662, + 13601: 662, + 13602: 662, + 13603: 662, + 13604: 662, + 13605: 662, + 13606: 662, + 13607: 662, + 13608: 662, + 13609: 662, + 13610: 662, + 13611: 662, + 13612: 662, + 13613: 662, + 13614: 662, + 13615: 662, + 13616: 662, + 13617: 662, + 13618: 662, + 13619: 662, + 13620: 662, + 13621: 662, + 13622: 662, + 13623: 662, + 13624: 662, + 13625: 662, + 13626: 662, + 13627: 662, + 13628: 662, + 13629: 662, + 13630: 662, + 13631: 662, + 13632: 662, + 13633: 662, + 13634: 662, + 13635: 662, + 13636: 662, + 13637: 662, + 13638: 662, + 13639: 662, + 13640: 662, + 13641: 662, + 13642: 662, + 13643: 662, + 13644: 662, + 13645: 662, + 13646: 662, + 13647: 662, + 13648: 662, + 13649: 662, + 13650: 662, + 13651: 662, + 13652: 662, + 13653: 662, + 13654: 662, + 13655: 662, + 13656: 662, + 13657: 662, + 13658: 662, + 13659: 662, + 13660: 662, + 13661: 662, + 13662: 662, + 13663: 662, + 13664: 662, + 13665: 662, + 13666: 662, + 13667: 662, + 13668: 662, + 13669: 662, + 13670: 662, + 13671: 662, + 13672: 662, + 13673: 662, + 13674: 662, + 13675: 662, + 13676: 662, + 13677: 662, + 13678: 662, + 13679: 662, + 13680: 662, + 13681: 662, + 13682: 662, + 13683: 662, + 13684: 662, + 13685: 662, + 13686: 662, + 13687: 662, + 13688: 662, + 13689: 662, + 13690: 662, + 13691: 662, + 13692: 662, + 13693: 662, + 13694: 662, + 13695: 662, + 13696: 662, + 13697: 662, + 13698: 662, + 13699: 662, + 13700: 662, + 13701: 662, + 13702: 662, + 13703: 662, + 13704: 662, + 13705: 662, + 13706: 662, + 13707: 662, + 13708: 662, + 13709: 662, + 13710: 662, + 13711: 662, + 13712: 662, + 13713: 662, + 13714: 662, + 13715: 662, + 13716: 662, + 13717: 662, + 13718: 662, + 13719: 662, + 13720: 662, + 13721: 662, + 13722: 662, + 13723: 662, + 13724: 662, + 13725: 662, + 13726: 662, + 13727: 662, + 13728: 662, + 13729: 662, + 13730: 662, + 13731: 662, + 13732: 662, + 13733: 662, + 13734: 662, + 13735: 662, + 13736: 662, + 13737: 662, + 13738: 662, + 13739: 662, + 13740: 662, + 13741: 662, + 13742: 662, + 13743: 662, + 13744: 662, + 13745: 662, + 13746: 662, + 13747: 662, + 13748: 662, + 13749: 662, + 13750: 662, + 13751: 662, + 13752: 662, + 13753: 662, + 13754: 662, + 13755: 662, + 13756: 662, + 13757: 662, + 13758: 662, + 13759: 662, + 13760: 662, + 13761: 662, + 13762: 662, + 13763: 662, + 13764: 662, + 13765: 662, + 13766: 662, + 13767: 662, + 13768: 662, + 13769: 662, + 13770: 662, + 13771: 662, + 13772: 662, + 13773: 662, + 13774: 662, + 13775: 662, + 13776: 662, + 13777: 662, + 13778: 662, + 13779: 662, + 13780: 662, + 13781: 662, + 13782: 662, + 13783: 662, + 13784: 662, + 13785: 662, + 13786: 662, + 13787: 663, + 13788: 663, + 13789: 663, + 13790: 663, + 13791: 663, + 13792: 663, + 13793: 663, + 13794: 663, + 13795: 663, + 13796: 663, + 13797: 663, + 13798: 663, + 13799: 663, + 13800: 663, + 13801: 663, + 13802: 663, + 13803: 663, + 13804: 663, + 13805: 663, + 13806: 663, + 13807: 663, + 13808: 663, + 13809: 663, + 13810: 663, + 13811: 663, + 13812: 663, + 13813: 663, + 13814: 663, + 13815: 663, + 13816: 663, + 13817: 663, + 13818: 663, + 13819: 663, + 13820: 663, + 13821: 663, + 13822: 663, + 13823: 663, + 13824: 663, + 13825: 663, + 13826: 663, + 13827: 663, + 13828: 663, + 13829: 663, + 13830: 663, + 13831: 663, + 13832: 663, + 13833: 663, + 13834: 663, + 13835: 663, + 13836: 663, + 13837: 663, + 13838: 663, + 13839: 663, + 13840: 663, + 13841: 663, + 13842: 663, + 13843: 663, + 13844: 663, + 13845: 663, + 13846: 663, + 13847: 663, + 13848: 663, + 13849: 663, + 13850: 663, + 13851: 663, + 13852: 663, + 13853: 663, + 13854: 663, + 13855: 663, + 13856: 663, + 13857: 663, + 13858: 663, + 13859: 663, + 13860: 663, + 13861: 663, + 13862: 663, + 13863: 663, + 13864: 663, + 13865: 663, + 13866: 663, + 13867: 663, + 13868: 663, + 13869: 663, + 13870: 663, + 13871: 663, + 13872: 663, + 13873: 663, + 13874: 663, + 13875: 663, + 13876: 663, + 13877: 663, + 13878: 663, + 13879: 663, + 13880: 663, + 13881: 663, + 13882: 663, + 13883: 663, + 13884: 663, + 13885: 663, + 13886: 663, + 13887: 663, + 13888: 663, + 13889: 663, + 13890: 663, + 13891: 663, + 13892: 663, + 13893: 663, + 13894: 663, + 13895: 663, + 13896: 663, + 13897: 663, + 13898: 663, + 13899: 663, + 13900: 663, + 13901: 663, + 13902: 663, + 13903: 663, + 13904: 663, + 13905: 663, + 13906: 663, + 13907: 663, + 13908: 663, + 13909: 663, + 13910: 663, + 13911: 663, + 13912: 663, + 13913: 663, + 13914: 663, + 13915: 663, + 13916: 663, + 13917: 663, + 13918: 663, + 13919: 663, + 13920: 663, + 13921: 663, + 13922: 663, + 13923: 663, + 13924: 663, + 13925: 663, + 13926: 663, + 13927: 663, + 13928: 663, + 13929: 663, + 13930: 663, + 13931: 663, + 13932: 663, + 13933: 663, + 13934: 663, + 13935: 663, + 13936: 663, + 13937: 663, + 13938: 663, + 13939: 663, + 13940: 663, + 13941: 663, + 13942: 663, + 13943: 663, + 13944: 663, + 13945: 663, + 13946: 663, + 13947: 663, + 13948: 663, + 13949: 663, + 13950: 663, + 13951: 663, + 13952: 663, + 13953: 663, + 13954: 663, + 13955: 663, + 13956: 663, + 13957: 663, + 13958: 663, + 13959: 663, + 13960: 663, + 13961: 663, + 13962: 663, + 13963: 663, + 13964: 663, + 13965: 663, + 13966: 663, + 13967: 663, + 13968: 663, + 13969: 663, + 13970: 663, + 13971: 663, + 13972: 663, + 13973: 663, + 13974: 663, + 13975: 663, + 13976: 663, + 13977: 663, + 13978: 663, + 13979: 663, + 13980: 663, + 13981: 663, + 13982: 663, + 13983: 663, + 13984: 663, + 13985: 663, + 13986: 663, + 13987: 663, + 13988: 663, + 13989: 663, + 13990: 663, + 13991: 663, + 13992: 663, + 13993: 663, + 13994: 663, + 13995: 663, + 13996: 663, + 13997: 663, + 13998: 663, + 13999: 663, + 14000: 663, + 14001: 663, + 14002: 663, + 14003: 663, + 14004: 663, + 14005: 663, + 14006: 663, + 14007: 663, + 14008: 663, + 14009: 663, + 14010: 663, + 14011: 663, + 14012: 663, + 14013: 663, + 14014: 663, + 14015: 663, + 14016: 663, + 14017: 663, + 14018: 663, + 14019: 663, + 14020: 663, + 14021: 663, + 14022: 663, + 14023: 663, + 14024: 663, + 14025: 663, + 14026: 663, + 14027: 663, + 14028: 663, + 14029: 663, + 14030: 663, + 14031: 663, + 14032: 663, + 14033: 663, + 14034: 663, + 14035: 663, + 14036: 663, + 14037: 663, + 14038: 663, + 14039: 663, + 14040: 663, + 14041: 663, + 14042: 663, + 14043: 663, + 14044: 663, + 14045: 663, + 14046: 663, + 14047: 663, + 14048: 663, + 14049: 663, + 14050: 663, + 14051: 663, + 14052: 663, + 14053: 663, + 14054: 663, + 14055: 663, + 14056: 663, + 14057: 663, + 14058: 663, + 14059: 663, + 14060: 663, + 14061: 663, + 14062: 663, + 14063: 663, + 14064: 663, + 14065: 663, + 14066: 663, + 14067: 663, + 14068: 663, + 14069: 663, + 14070: 663, + 14071: 663, + 14072: 663, + 14073: 663, + 14074: 663, + 14075: 663, + 14076: 663, + 14077: 663, + 14078: 663, + 14079: 663, + 14080: 663, + 14081: 663, + 14082: 663, + 14083: 663, + 14084: 663, + 14085: 663, + 14086: 663, + 14087: 663, + 14088: 663, + 14089: 663, + 14090: 663, + 14091: 663, + 14092: 663, + 14093: 663, + 14094: 663, + 14095: 663, + 14096: 663, + 14097: 663, + 14098: 663, + 14099: 663, + 14100: 663, + 14101: 663, + 14102: 663, + 14103: 663, + 14104: 663, + 14105: 663, + 14106: 663, + 14107: 663, + 14108: 663, + 14109: 663, + 14110: 663, + 14111: 664, + 14112: 664, + 14113: 664, + 14114: 664, + 14115: 664, + 14116: 664, + 14117: 664, + 14118: 664, + 14119: 664, + 14120: 664, + 14121: 664, + 14122: 664, + 14123: 664, + 14124: 664, + 14125: 664, + 14126: 664, + 14127: 664, + 14128: 664, + 14129: 664, + 14130: 664, + 14131: 664, + 14132: 664, + 14133: 664, + 14134: 664, + 14135: 664, + 14136: 664, + 14137: 664, + 14138: 664, + 14139: 664, + 14140: 664, + 14141: 664, + 14142: 664, + 14143: 664, + 14144: 664, + 14145: 664, + 14146: 664, + 14147: 664, + 14148: 664, + 14149: 664, + 14150: 664, + 14151: 664, + 14152: 664, + 14153: 664, + 14154: 664, + 14155: 664, + 14156: 664, + 14157: 664, + 14158: 664, + 14159: 664, + 14160: 664, + 14161: 664, + 14162: 664, + 14163: 664, + 14164: 664, + 14165: 664, + 14166: 664, + 14167: 664, + 14168: 664, + 14169: 664, + 14170: 664, + 14171: 664, + 14172: 664, + 14173: 664, + 14174: 664, + 14175: 664, + 14176: 664, + 14177: 664, + 14178: 664, + 14179: 664, + 14180: 664, + 14181: 664, + 14182: 664, + 14183: 664, + 14184: 664, + 14185: 664, + 14186: 664, + 14187: 664, + 14188: 664, + 14189: 664, + 14190: 664, + 14191: 664, + 14192: 664, + 14193: 664, + 14194: 664, + 14195: 664, + 14196: 664, + 14197: 664, + 14198: 664, + 14199: 664, + 14200: 664, + 14201: 664, + 14202: 664, + 14203: 664, + 14204: 664, + 14205: 664, + 14206: 664, + 14207: 664, + 14208: 664, + 14209: 664, + 14210: 664, + 14211: 664, + 14212: 664, + 14213: 664, + 14214: 664, + 14215: 664, + 14216: 664, + 14217: 664, + 14218: 664, + 14219: 664, + 14220: 664, + 14221: 664, + 14222: 664, + 14223: 664, + 14224: 664, + 14225: 664, + 14226: 664, + 14227: 664, + 14228: 664, + 14229: 664, + 14230: 664, + 14231: 664, + 14232: 664, + 14233: 664, + 14234: 664, + 14235: 664, + 14236: 664, + 14237: 664, + 14238: 664, + 14239: 664, + 14240: 664, + 14241: 664, + 14242: 664, + 14243: 664, + 14244: 664, + 14245: 664, + 14246: 664, + 14247: 664, + 14248: 664, + 14249: 664, + 14250: 664, + 14251: 664, + 14252: 664, + 14253: 664, + 14254: 664, + 14255: 664, + 14256: 664, + 14257: 664, + 14258: 664, + 14259: 664, + 14260: 664, + 14261: 664, + 14262: 664, + 14263: 664, + 14264: 664, + 14265: 664, + 14266: 664, + 14267: 664, + 14268: 664, + 14269: 664, + 14270: 664, + 14271: 664, + 14272: 664, + 14273: 664, + 14274: 664, + 14275: 664, + 14276: 664, + 14277: 664, + 14278: 664, + 14279: 664, + 14280: 664, + 14281: 664, + 14282: 664, + 14283: 664, + 14284: 664, + 14285: 664, + 14286: 664, + 14287: 664, + 14288: 664, + 14289: 664, + 14290: 664, + 14291: 664, + 14292: 664, + 14293: 664, + 14294: 664, + 14295: 664, + 14296: 664, + 14297: 664, + 14298: 664, + 14299: 664, + 14300: 664, + 14301: 664, + 14302: 664, + 14303: 664, + 14304: 664, + 14305: 664, + 14306: 664, + 14307: 664, + 14308: 664, + 14309: 664, + 14310: 664, + 14311: 664, + 14312: 664, + 14313: 664, + 14314: 664, + 14315: 664, + 14316: 664, + 14317: 664, + 14318: 664, + 14319: 664, + 14320: 664, + 14321: 664, + 14322: 664, + 14323: 664, + 14324: 664, + 14325: 664, + 14326: 664, + 14327: 664, + 14328: 664, + 14329: 664, + 14330: 664, + 14331: 664, + 14332: 664, + 14333: 664, + 14334: 664, + 14335: 664, + 14336: 664, + 14337: 664, + 14338: 664, + 14339: 664, + 14340: 664, + 14341: 664, + 14342: 664, + 14343: 664, + 14344: 664, + 14345: 664, + 14346: 664, + 14347: 664, + 14348: 664, + 14349: 664, + 14350: 664, + 14351: 664, + 14352: 664, + 14353: 664, + 14354: 664, + 14355: 664, + 14356: 664, + 14357: 664, + 14358: 664, + 14359: 664, + 14360: 664, + 14361: 664, + 14362: 664, + 14363: 664, + 14364: 664, + 14365: 664, + 14366: 664, + 14367: 664, + 14368: 664, + 14369: 664, + 14370: 664, + 14371: 664, + 14372: 664, + 14373: 664, + 14374: 664, + 14375: 664, + 14376: 664, + 14377: 664, + 14378: 664, + 14379: 664, + 14380: 664, + 14381: 664, + 14382: 664, + 14383: 664, + 14384: 664, + 14385: 664, + 14386: 664, + 14387: 664, + 14388: 664, + 14389: 664, + 14390: 664, + 14391: 664, + 14392: 664, + 14393: 664, + 14394: 664, + 14395: 664, + 14396: 664, + 14397: 664, + 14398: 664, + 14399: 664, + 14400: 664, + 14401: 664, + 14402: 664, + 14403: 664, + 14404: 664, + 14405: 664, + 14406: 664, + 14407: 664, + 14408: 664, + 14409: 664, + 14410: 664, + 14411: 664, + 14412: 664, + 14413: 664, + 14414: 664, + 14415: 664, + 14416: 664, + 14417: 664, + 14418: 664, + 14419: 664, + 14420: 664, + 14421: 664, + 14422: 664, + 14423: 664, + 14424: 664, + 14425: 664, + 14426: 664, + 14427: 664, + 14428: 664, + 14429: 664, + 14430: 664, + 14431: 664, + 14432: 664, + 14433: 664, + 14434: 664, + 14435: 665, + 14436: 665, + 14437: 665, + 14438: 665, + 14439: 665, + 14440: 665, + 14441: 665, + 14442: 665, + 14443: 665, + 14444: 665, + 14445: 665, + 14446: 665, + 14447: 665, + 14448: 665, + 14449: 665, + 14450: 665, + 14451: 665, + 14452: 665, + 14453: 665, + 14454: 665, + 14455: 665, + 14456: 665, + 14457: 665, + 14458: 665, + 14459: 665, + 14460: 665, + 14461: 665, + 14462: 665, + 14463: 665, + 14464: 665, + 14465: 665, + 14466: 665, + 14467: 665, + 14468: 665, + 14469: 665, + 14470: 665, + 14471: 665, + 14472: 665, + 14473: 665, + 14474: 665, + 14475: 665, + 14476: 665, + 14477: 665, + 14478: 665, + 14479: 665, + 14480: 665, + 14481: 665, + 14482: 665, + 14483: 665, + 14484: 665, + 14485: 665, + 14486: 665, + 14487: 665, + 14488: 665, + 14489: 665, + 14490: 665, + 14491: 665, + 14492: 665, + 14493: 665, + 14494: 665, + 14495: 665, + 14496: 665, + 14497: 665, + 14498: 665, + 14499: 665, + 14500: 665, + 14501: 665, + 14502: 665, + 14503: 665, + 14504: 665, + 14505: 665, + 14506: 665, + 14507: 665, + 14508: 665, + 14509: 665, + 14510: 665, + 14511: 665, + 14512: 665, + 14513: 665, + 14514: 665, + 14515: 665, + 14516: 665, + 14517: 665, + 14518: 665, + 14519: 665, + 14520: 665, + 14521: 665, + 14522: 665, + 14523: 665, + 14524: 665, + 14525: 665, + 14526: 665, + 14527: 665, + 14528: 665, + 14529: 665, + 14530: 665, + 14531: 665, + 14532: 665, + 14533: 665, + 14534: 665, + 14535: 665, + 14536: 665, + 14537: 665, + 14538: 665, + 14539: 665, + 14540: 665, + 14541: 665, + 14542: 665, + 14543: 665, + 14544: 665, + 14545: 665, + 14546: 665, + 14547: 665, + 14548: 665, + 14549: 665, + 14550: 665, + 14551: 665, + 14552: 665, + 14553: 665, + 14554: 665, + 14555: 665, + 14556: 665, + 14557: 665, + 14558: 665, + 14559: 665, + 14560: 665, + 14561: 665, + 14562: 665, + 14563: 665, + 14564: 665, + 14565: 665, + 14566: 665, + 14567: 665, + 14568: 665, + 14569: 665, + 14570: 665, + 14571: 665, + 14572: 665, + 14573: 665, + 14574: 665, + 14575: 665, + 14576: 665, + 14577: 665, + 14578: 665, + 14579: 665, + 14580: 665, + 14581: 665, + 14582: 665, + 14583: 665, + 14584: 665, + 14585: 665, + 14586: 665, + 14587: 665, + 14588: 665, + 14589: 665, + 14590: 665, + 14591: 665, + 14592: 665, + 14593: 665, + 14594: 665, + 14595: 665, + 14596: 665, + 14597: 665, + 14598: 665, + 14599: 665, + 14600: 665, + 14601: 665, + 14602: 665, + 14603: 665, + 14604: 665, + 14605: 665, + 14606: 665, + 14607: 665, + 14608: 665, + 14609: 665, + 14610: 665, + 14611: 665, + 14612: 665, + 14613: 665, + 14614: 665, + 14615: 665, + 14616: 665, + 14617: 665, + 14618: 665, + 14619: 665, + 14620: 665, + 14621: 665, + 14622: 665, + 14623: 665, + 14624: 665, + 14625: 665, + 14626: 665, + 14627: 665, + 14628: 665, + 14629: 665, + 14630: 665, + 14631: 665, + 14632: 665, + 14633: 665, + 14634: 665, + 14635: 665, + 14636: 665, + 14637: 665, + 14638: 665, + 14639: 665, + 14640: 665, + 14641: 665, + 14642: 665, + 14643: 665, + 14644: 665, + 14645: 665, + 14646: 665, + 14647: 665, + 14648: 665, + 14649: 665, + 14650: 665, + 14651: 665, + 14652: 665, + 14653: 665, + 14654: 665, + 14655: 665, + 14656: 665, + 14657: 665, + 14658: 665, + 14659: 665, + 14660: 665, + 14661: 665, + 14662: 665, + 14663: 665, + 14664: 665, + 14665: 665, + 14666: 665, + 14667: 665, + 14668: 665, + 14669: 665, + 14670: 665, + 14671: 665, + 14672: 665, + 14673: 665, + 14674: 665, + 14675: 665, + 14676: 665, + 14677: 665, + 14678: 665, + 14679: 665, + 14680: 665, + 14681: 665, + 14682: 665, + 14683: 665, + 14684: 665, + 14685: 665, + 14686: 665, + 14687: 665, + 14688: 665, + 14689: 665, + 14690: 665, + 14691: 665, + 14692: 665, + 14693: 665, + 14694: 665, + 14695: 665, + 14696: 665, + 14697: 665, + 14698: 665, + 14699: 665, + 14700: 665, + 14701: 665, + 14702: 665, + 14703: 665, + 14704: 665, + 14705: 665, + 14706: 665, + 14707: 665, + 14708: 665, + 14709: 665, + 14710: 665, + 14711: 665, + 14712: 665, + 14713: 665, + 14714: 665, + 14715: 665, + 14716: 665, + 14717: 665, + 14718: 665, + 14719: 665, + 14720: 665, + 14721: 665, + 14722: 665, + 14723: 665, + 14724: 665, + 14725: 665, + 14726: 665, + 14727: 665, + 14728: 665, + 14729: 665, + 14730: 665, + 14731: 665, + 14732: 665, + 14733: 665, + 14734: 665, + 14735: 665, + 14736: 665, + 14737: 665, + 14738: 665, + 14739: 665, + 14740: 665, + 14741: 665, + 14742: 665, + 14743: 665, + 14744: 665, + 14745: 665, + 14746: 665, + 14747: 665, + 14748: 665, + 14749: 665, + 14750: 665, + 14751: 665, + 14752: 665, + 14753: 665, + 14754: 665, + 14755: 665, + 14756: 665, + 14757: 665, + 14758: 665, + 14759: 666, + 14760: 666, + 14761: 666, + 14762: 666, + 14763: 666, + 14764: 666, + 14765: 666, + 14766: 666, + 14767: 666, + 14768: 666, + 14769: 666, + 14770: 666, + 14771: 666, + 14772: 666, + 14773: 666, + 14774: 666, + 14775: 666, + 14776: 666, + 14777: 666, + 14778: 666, + 14779: 666, + 14780: 666, + 14781: 666, + 14782: 666, + 14783: 666, + 14784: 666, + 14785: 666, + 14786: 666, + 14787: 666, + 14788: 666, + 14789: 666, + 14790: 666, + 14791: 667, + 14792: 667, + 14793: 667, + 14794: 667, + 14795: 668, + 14796: 668, + 14797: 668, + 14798: 668, + 14799: 668, + 14800: 668, + 14801: 668, + 14802: 668, + 14803: 668, + 14804: 668, + 14805: 668, + 14806: 668, + 14807: 669, + 14808: 669, + 14809: 669, + 14810: 669, + 14811: 669, + 14812: 669, + 14813: 669, + 14814: 669, + 14815: 670, + 14816: 670, + 14817: 670, + 14818: 670, + 14819: 670, + 14820: 670, + 14821: 670, + 14822: 670, + 14823: 671, + 14824: 672, + 14825: 673, + 14826: 673, + 14827: 673, + 14828: 673, + 14829: 673, + 14830: 673, + 14831: 673, + 14832: 673, + 14833: 673, + 14834: 673, + 14835: 673, + 14836: 673, + 14837: 674, + 14838: 674, + 14839: 674, + 14840: 674, + 14841: 674, + 14842: 674, + 14843: 674, + 14844: 674, + 14845: 674, + 14846: 674, + 14847: 674, + 14848: 674, + 14849: 674, + 14850: 674, + 14851: 674, + 14852: 674, + 14853: 675, + 14854: 676, + 14855: 676, + 14856: 676, + 14857: 676, + 14858: 677, + 14859: 677, + 14860: 677, + 14861: 677, + 14862: 677, + 14863: 677, + 14864: 677, + 14865: 677, + 14866: 677, + 14867: 677, + 14868: 677, + 14869: 677, + 14870: 677, + 14871: 677, + 14872: 677, + 14873: 677, + 14874: 677, + 14875: 677, + 14876: 677, + 14877: 677, + 14878: 677, + 14879: 677, + 14880: 677, + 14881: 677, + 14882: 677, + 14883: 677, + 14884: 677, + 14885: 677, + 14886: 677, + 14887: 677, + 14888: 677, + 14889: 677, + 14890: 678, + 14891: 678, + 14892: 678, + 14893: 678, + 14894: 679, + 14895: 679, + 14896: 679, + 14897: 679, + 14898: 680, + 14899: 680, + 14900: 680, + 14901: 680, + 14902: 680, + 14903: 680, + 14904: 680, + 14905: 680, + 14906: 680, + 14907: 680, + 14908: 680, + 14909: 680, + 14910: 680, + 14911: 680, + 14912: 680, + 14913: 680, + 14914: 680, + 14915: 680, + 14916: 680, + 14917: 680, + 14918: 680, + 14919: 680, + 14920: 680, + 14921: 680, + 14922: 680, + 14923: 680, + 14924: 680, + 14925: 680, + 14926: 680, + 14927: 680, + 14928: 680, + 14929: 680, + 14930: 681, + 14931: 681, + 14932: 681, + 14933: 681, + 14934: 681, + 14935: 681, + 14936: 681, + 14937: 681, + 14938: 681, + 14939: 681, + 14940: 681, + 14941: 681, + 14942: 681, + 14943: 681, + 14944: 681, + 14945: 681, + 14946: 681, + 14947: 681, + 14948: 681, + 14949: 681, + 14950: 681, + 14951: 681, + 14952: 681, + 14953: 681, + 14954: 681, + 14955: 681, + 14956: 681, + 14957: 681, + 14958: 681, + 14959: 681, + 14960: 681, + 14961: 681, + 14962: 682, + 14963: 682, + 14964: 682, + 14965: 682, + 14966: 683, + 14967: 683, + 14968: 683, + 14969: 684, + 14970: 684, + 14971: 684, + 14972: 685, + 14973: 685, + 14974: 685, + 14975: 686, + 14976: 686, + 14977: 686, + 14978: 687, + 14979: 688, + 14980: 689, + 14981: 690, + 14982: 691, + 14983: 692, + 14984: 692, + 14985: 692, + 14986: 693, + 14987: 693, + 14988: 693, + 14989: 694, + 14990: 694, + 14991: 694, + 14992: 695, + 14993: 695, + 14994: 695, + 14995: 696, + 14996: 697, + 14997: 698, + 14998: 699, + 14999: 699, + 15000: 699, + 15001: 699, + 15002: 699, + 15003: 699, + 15004: 699, + 15005: 699, + 15006: 699, + 15007: 699, + 15008: 699, + 15009: 699, + 15010: 699, + 15011: 699, + 15012: 699, + 15013: 699, + 15014: 699, + 15015: 699, + 15016: 699, + 15017: 699, + 15018: 699, + 15019: 699, + 15020: 699, + 15021: 699, + 15022: 699, + 15023: 699, + 15024: 700, + 15025: 701, + 15026: 701, + 15027: 701, + 15028: 701, + 15029: 701, + 15030: 701, + 15031: 701, + 15032: 701, + 15033: 701, + 15034: 701, + 15035: 701, + 15036: 701, + 15037: 701, + 15038: 701, + 15039: 701, + 15040: 701, + 15041: 701, + 15042: 701, + 15043: 701, + 15044: 701, + 15045: 701, + 15046: 701, + 15047: 701, + 15048: 701, + 15049: 701, + 15050: 701, + 15051: 702, + 15052: 703, + 15053: 704, + 15054: 705, + 15055: 706, + 15056: 706, + 15057: 706, + 15058: 706, + 15059: 706, + 15060: 706, + 15061: 707, + 15062: 707, + 15063: 707, + 15064: 707, + 15065: 707, + 15066: 707, + 15067: 708, + 15068: 708, + 15069: 709, + 15070: 709, + 15071: 710, + 15072: 710, + 15073: 710, + 15074: 710, + 15075: 710, + 15076: 710, + 15077: 710, + 15078: 710, + 15079: 710, + 15080: 710, + 15081: 710, + 15082: 710, + 15083: 710, + 15084: 710, + 15085: 710, + 15086: 710, + 15087: 710, + 15088: 710, + 15089: 710, + 15090: 710, + 15091: 710, + 15092: 710, + 15093: 710, + 15094: 710, + 15095: 710, + 15096: 710, + 15097: 710, + 15098: 710, + 15099: 710, + 15100: 710, + 15101: 710, + 15102: 710, + 15103: 711, + 15104: 711, + 15105: 711, + 15106: 711, + 15107: 711, + 15108: 711, + 15109: 711, + 15110: 711, + 15111: 711, + 15112: 711, + 15113: 711, + 15114: 711, + 15115: 711, + 15116: 711, + 15117: 711, + 15118: 711, + 15119: 711, + 15120: 711, + 15121: 711, + 15122: 711, + 15123: 711, + 15124: 711, + 15125: 711, + 15126: 711, + 15127: 711, + 15128: 711, + 15129: 711, + 15130: 711, + 15131: 711, + 15132: 711, + 15133: 711, + 15134: 711, + 15135: 712, + 15136: 712, + 15137: 712, + 15138: 712, + 15139: 712, + 15140: 712, + 15141: 712, + 15142: 712, + 15143: 712, + 15144: 712, + 15145: 712, + 15146: 712, + 15147: 712, + 15148: 712, + 15149: 712, + 15150: 712, + 15151: 712, + 15152: 712, + 15153: 712, + 15154: 712, + 15155: 712, + 15156: 712, + 15157: 712, + 15158: 712, + 15159: 712, + 15160: 712, + 15161: 712, + 15162: 712, + 15163: 712, + 15164: 712, + 15165: 712, + 15166: 712, + 15167: 712, + 15168: 712, + 15169: 712, + 15170: 712, + 15171: 712, + 15172: 712, + 15173: 712, + 15174: 712, + 15175: 712, + 15176: 712, + 15177: 712, + 15178: 712, + 15179: 712, + 15180: 712, + 15181: 712, + 15182: 712, + 15183: 712, + 15184: 712, + 15185: 712, + 15186: 712, + 15187: 712, + 15188: 712, + 15189: 712, + 15190: 712, + 15191: 712, + 15192: 712, + 15193: 712, + 15194: 712, + 15195: 712, + 15196: 712, + 15197: 712, + 15198: 712, + 15199: 713, + 15200: 713, + 15201: 713, + 15202: 713, + 15203: 713, + 15204: 713, + 15205: 713, + 15206: 713, + 15207: 713, + 15208: 713, + 15209: 713, + 15210: 713, + 15211: 713, + 15212: 713, + 15213: 713, + 15214: 713, + 15215: 713, + 15216: 713, + 15217: 713, + 15218: 713, + 15219: 713, + 15220: 713, + 15221: 713, + 15222: 713, + 15223: 713, + 15224: 713, + 15225: 713, + 15226: 713, + 15227: 713, + 15228: 713, + 15229: 713, + 15230: 713, + 15231: 713, + 15232: 713, + 15233: 713, + 15234: 713, + 15235: 713, + 15236: 713, + 15237: 713, + 15238: 713, + 15239: 713, + 15240: 713, + 15241: 713, + 15242: 713, + 15243: 713, + 15244: 713, + 15245: 713, + 15246: 713, + 15247: 713, + 15248: 713, + 15249: 713, + 15250: 713, + 15251: 713, + 15252: 713, + 15253: 713, + 15254: 713, + 15255: 713, + 15256: 713, + 15257: 713, + 15258: 713, + 15259: 713, + 15260: 713, + 15261: 713, + 15262: 713, + 15263: 714, + 15264: 714, + 15265: 714, + 15266: 714, + 15267: 714, + 15268: 714, + 15269: 714, + 15270: 714, + 15271: 714, + 15272: 714, + 15273: 714, + 15274: 714, + 15275: 714, + 15276: 714, + 15277: 714, + 15278: 714, + 15279: 714, + 15280: 714, + 15281: 714, + 15282: 714, + 15283: 714, + 15284: 714, + 15285: 714, + 15286: 714, + 15287: 714, + 15288: 714, + 15289: 714, + 15290: 714, + 15291: 714, + 15292: 714, + 15293: 714, + 15294: 714, + 15295: 715, + 15296: 715, + 15297: 715, + 15298: 715, + 15299: 715, + 15300: 715, + 15301: 715, + 15302: 715, + 15303: 715, + 15304: 715, + 15305: 715, + 15306: 715, + 15307: 715, + 15308: 715, + 15309: 715, + 15310: 715, + 15311: 715, + 15312: 715, + 15313: 715, + 15314: 715, + 15315: 715, + 15316: 715, + 15317: 715, + 15318: 715, + 15319: 715, + 15320: 715, + 15321: 715, + 15322: 715, + 15323: 715, + 15324: 715, + 15325: 715, + 15326: 715, + 15327: 716, + 15328: 716, + 15329: 716, + 15330: 716, + 15331: 716, + 15332: 716, + 15333: 716, + 15334: 716, + 15335: 716, + 15336: 716, + 15337: 716, + 15338: 716, + 15339: 716, + 15340: 716, + 15341: 716, + 15342: 716, + 15343: 716, + 15344: 716, + 15345: 716, + 15346: 716, + 15347: 716, + 15348: 716, + 15349: 716, + 15350: 716, + 15351: 716, + 15352: 716, + 15353: 716, + 15354: 716, + 15355: 716, + 15356: 716, + 15357: 716, + 15358: 716, + 15359: 716, + 15360: 716, + 15361: 716, + 15362: 716, + 15363: 716, + 15364: 716, + 15365: 716, + 15366: 716, + 15367: 716, + 15368: 716, + 15369: 716, + 15370: 716, + 15371: 716, + 15372: 716, + 15373: 716, + 15374: 716, + 15375: 716, + 15376: 716, + 15377: 716, + 15378: 716, + 15379: 716, + 15380: 716, + 15381: 716, + 15382: 716, + 15383: 716, + 15384: 716, + 15385: 716, + 15386: 716, + 15387: 716, + 15388: 716, + 15389: 716, + 15390: 716, + 15391: 716, + 15392: 716, + 15393: 716, + 15394: 716, + 15395: 716, + 15396: 716, + 15397: 716, + 15398: 716, + 15399: 716, + 15400: 716, + 15401: 716, + 15402: 716, + 15403: 716, + 15404: 716, + 15405: 716, + 15406: 716, + 15407: 717, + 15408: 717, + 15409: 717, + 15410: 717, + 15411: 717, + 15412: 717, + 15413: 717, + 15414: 717, + 15415: 717, + 15416: 717, + 15417: 717, + 15418: 717, + 15419: 717, + 15420: 717, + 15421: 717, + 15422: 717, + 15423: 717, + 15424: 717, + 15425: 717, + 15426: 717, + 15427: 717, + 15428: 717, + 15429: 717, + 15430: 717, + 15431: 717, + 15432: 717, + 15433: 717, + 15434: 717, + 15435: 717, + 15436: 717, + 15437: 717, + 15438: 717, + 15439: 717, + 15440: 717, + 15441: 717, + 15442: 717, + 15443: 717, + 15444: 717, + 15445: 717, + 15446: 717, + 15447: 717, + 15448: 717, + 15449: 717, + 15450: 717, + 15451: 717, + 15452: 717, + 15453: 717, + 15454: 717, + 15455: 717, + 15456: 717, + 15457: 717, + 15458: 717, + 15459: 717, + 15460: 717, + 15461: 717, + 15462: 717, + 15463: 717, + 15464: 717, + 15465: 717, + 15466: 717, + 15467: 717, + 15468: 717, + 15469: 717, + 15470: 717, + 15471: 717, + 15472: 717, + 15473: 717, + 15474: 717, + 15475: 717, + 15476: 717, + 15477: 717, + 15478: 717, + 15479: 717, + 15480: 717, + 15481: 717, + 15482: 717, + 15483: 717, + 15484: 717, + 15485: 717, + 15486: 717, + 15487: 718, + 15488: 718, + 15489: 718, + 15490: 718, + 15491: 718, + 15492: 718, + 15493: 718, + 15494: 718, + 15495: 718, + 15496: 718, + 15497: 718, + 15498: 718, + 15499: 718, + 15500: 718, + 15501: 718, + 15502: 718, + 15503: 718, + 15504: 718, + 15505: 718, + 15506: 718, + 15507: 718, + 15508: 718, + 15509: 718, + 15510: 718, + 15511: 719, + 15512: 719, + 15513: 719, + 15514: 719, + 15515: 719, + 15516: 719, + 15517: 719, + 15518: 719, + 15519: 719, + 15520: 719, + 15521: 719, + 15522: 719, + 15523: 719, + 15524: 719, + 15525: 719, + 15526: 719, + 15527: 719, + 15528: 719, + 15529: 719, + 15530: 719, + 15531: 719, + 15532: 719, + 15533: 719, + 15534: 719, + 15535: 720, + 15536: 720, + 15537: 720, + 15538: 720, + 15539: 720, + 15540: 720, + 15541: 720, + 15542: 720, + 15543: 720, + 15544: 720, + 15545: 720, + 15546: 720, + 15547: 720, + 15548: 720, + 15549: 720, + 15550: 720, + 15551: 720, + 15552: 720, + 15553: 720, + 15554: 720, + 15555: 720, + 15556: 720, + 15557: 720, + 15558: 720, + 15559: 720, + 15560: 720, + 15561: 720, + 15562: 720, + 15563: 720, + 15564: 720, + 15565: 720, + 15566: 720, + 15567: 720, + 15568: 720, + 15569: 720, + 15570: 720, + 15571: 720, + 15572: 720, + 15573: 720, + 15574: 720, + 15575: 720, + 15576: 720, + 15577: 720, + 15578: 720, + 15579: 720, + 15580: 720, + 15581: 720, + 15582: 720, + 15583: 720, + 15584: 720, + 15585: 720, + 15586: 720, + 15587: 720, + 15588: 720, + 15589: 720, + 15590: 720, + 15591: 720, + 15592: 720, + 15593: 720, + 15594: 720, + 15595: 720, + 15596: 720, + 15597: 720, + 15598: 720, + 15599: 721, + 15600: 721, + 15601: 721, + 15602: 721, + 15603: 721, + 15604: 721, + 15605: 721, + 15606: 721, + 15607: 721, + 15608: 721, + 15609: 721, + 15610: 721, + 15611: 721, + 15612: 721, + 15613: 721, + 15614: 721, + 15615: 721, + 15616: 721, + 15617: 721, + 15618: 721, + 15619: 721, + 15620: 721, + 15621: 721, + 15622: 721, + 15623: 721, + 15624: 721, + 15625: 721, + 15626: 721, + 15627: 721, + 15628: 721, + 15629: 721, + 15630: 721, + 15631: 721, + 15632: 721, + 15633: 721, + 15634: 721, + 15635: 721, + 15636: 721, + 15637: 721, + 15638: 721, + 15639: 721, + 15640: 721, + 15641: 721, + 15642: 721, + 15643: 721, + 15644: 721, + 15645: 721, + 15646: 721, + 15647: 721, + 15648: 721, + 15649: 721, + 15650: 721, + 15651: 721, + 15652: 721, + 15653: 721, + 15654: 721, + 15655: 721, + 15656: 721, + 15657: 721, + 15658: 721, + 15659: 721, + 15660: 721, + 15661: 721, + 15662: 721, + 15663: 722, + 15664: 722, + 15665: 722, + 15666: 722, + 15667: 722, + 15668: 722, + 15669: 722, + 15670: 722, + 15671: 722, + 15672: 722, + 15673: 722, + 15674: 722, + 15675: 722, + 15676: 722, + 15677: 722, + 15678: 722, + 15679: 722, + 15680: 722, + 15681: 722, + 15682: 722, + 15683: 722, + 15684: 722, + 15685: 722, + 15686: 722, + 15687: 722, + 15688: 722, + 15689: 722, + 15690: 722, + 15691: 722, + 15692: 722, + 15693: 722, + 15694: 722, + 15695: 723, + 15696: 723, + 15697: 723, + 15698: 723, + 15699: 723, + 15700: 723, + 15701: 723, + 15702: 723, + 15703: 723, + 15704: 723, + 15705: 723, + 15706: 723, + 15707: 723, + 15708: 723, + 15709: 723, + 15710: 723, + 15711: 723, + 15712: 723, + 15713: 723, + 15714: 723, + 15715: 723, + 15716: 723, + 15717: 723, + 15718: 723, + 15719: 723, + 15720: 723, + 15721: 723, + 15722: 723, + 15723: 723, + 15724: 723, + 15725: 723, + 15726: 723, + 15727: 724, + 15728: 724, + 15729: 724, + 15730: 724, + 15731: 724, + 15732: 724, + 15733: 724, + 15734: 724, + 15735: 725, + 15736: 725, + 15737: 725, + 15738: 725, + 15739: 725, + 15740: 725, + 15741: 725, + 15742: 725, + 15743: 726, + 15744: 726, + 15745: 726, + 15746: 726, + 15747: 727, + 15748: 727, + 15749: 727, + 15750: 727, + 15751: 727, + 15752: 727, + 15753: 727, + 15754: 727, + 15755: 727, + 15756: 727, + 15757: 727, + 15758: 727, + 15759: 728, + 15760: 728, + 15761: 728, + 15762: 728, + 15763: 728, + 15764: 728, + 15765: 728, + 15766: 728, + 15767: 728, + 15768: 729, + 15769: 729, + 15770: 729, + 15771: 729, + 15772: 729, + 15773: 729, + 15774: 729, + 15775: 729, + 15776: 729, + 15777: 729, + 15778: 729, + 15779: 729, + 15780: 729, + 15781: 729, + 15782: 729, + 15783: 729, + 15784: 730, + 15785: 730, + 15786: 730, + 15787: 730, + 15788: 730, + 15789: 730, + 15790: 730, + 15791: 730, + 15792: 730, + 15793: 730, + 15794: 730, + 15795: 730, + 15796: 730, + 15797: 730, + 15798: 730, + 15799: 730, + 15800: 730, + 15801: 730, + 15802: 730, + 15803: 730, + 15804: 730, + 15805: 730, + 15806: 730, + 15807: 730, + 15808: 731, + 15809: 731, + 15810: 731, + 15811: 731, + 15812: 731, + 15813: 731, + 15814: 731, + 15815: 731, + 15816: 731, + 15817: 731, + 15818: 731, + 15819: 731, + 15820: 731, + 15821: 731, + 15822: 731, + 15823: 731, + 15824: 731, + 15825: 731, + 15826: 731, + 15827: 731, + 15828: 731, + 15829: 731, + 15830: 731, + 15831: 731, + 15832: 732, + 15833: 733, + 15834: 734, + 15835: 735, + 15836: 736, + 15837: 737, + 15838: 737, + 15839: 737, + 15840: 737, + 15841: 737, + 15842: 738, + 15843: 739, + 15844: 740, + 15845: 741, + 15846: 742, + 15847: 743, + 15848: 744, + 15849: 744, + 15850: 744, + 15851: 744, + 15852: 744, + 15853: 744, + 15854: 744, + 15855: 744, + 15856: 744, + 15857: 744, + 15858: 744, + 15859: 744, + 15860: 744, + 15861: 744, + 15862: 744, + 15863: 744, + 15864: 744, + 15865: 744, + 15866: 744, + 15867: 744, + 15868: 744, + 15869: 744, + 15870: 744, + 15871: 744, + 15872: 744, + 15873: 744, + 15874: 744, + 15875: 744, + 15876: 744, + 15877: 744, + 15878: 744, + 15879: 744, + 15880: 744, + 15881: 744, + 15882: 744, + 15883: 744, + 15884: 744, + 15885: 744, + 15886: 744, + 15887: 744, + 15888: 744, + 15889: 744, + 15890: 744, + 15891: 744, + 15892: 744, + 15893: 744, + 15894: 744, + 15895: 744, + 15896: 744, + 15897: 744, + 15898: 744, + 15899: 744, + 15900: 744, + 15901: 744, + 15902: 744, + 15903: 744, + 15904: 744, + 15905: 744, + 15906: 744, + 15907: 744, + 15908: 744, + 15909: 744, + 15910: 744, + 15911: 744, + 15912: 744, + 15913: 744, + 15914: 744, + 15915: 744, + 15916: 744, + 15917: 744, + 15918: 744, + 15919: 744, + 15920: 744, + 15921: 744, + 15922: 744, + 15923: 744, + 15924: 744, + 15925: 744, + 15926: 744, + 15927: 744, + 15928: 745, + 15929: 745, + 15930: 745, + 15931: 745, + 15932: 745, + 15933: 745, + 15934: 745, + 15935: 745, + 15936: 745, + 15937: 745, + 15938: 745, + 15939: 745, + 15940: 745, + 15941: 745, + 15942: 745, + 15943: 745, + 15944: 745, + 15945: 745, + 15946: 745, + 15947: 745, + 15948: 745, + 15949: 745, + 15950: 745, + 15951: 745, + 15952: 745, + 15953: 745, + 15954: 745, + 15955: 745, + 15956: 745, + 15957: 745, + 15958: 745, + 15959: 745, + 15960: 745, + 15961: 745, + 15962: 745, + 15963: 745, + 15964: 745, + 15965: 745, + 15966: 745, + 15967: 745, + 15968: 745, + 15969: 745, + 15970: 745, + 15971: 745, + 15972: 745, + 15973: 745, + 15974: 745, + 15975: 745, + 15976: 745, + 15977: 745, + 15978: 745, + 15979: 745, + 15980: 745, + 15981: 745, + 15982: 745, + 15983: 745, + 15984: 745, + 15985: 745, + 15986: 745, + 15987: 745, + 15988: 745, + 15989: 745, + 15990: 745, + 15991: 745, + 15992: 745, + 15993: 745, + 15994: 745, + 15995: 745, + 15996: 745, + 15997: 745, + 15998: 745, + 15999: 745, + 16000: 745, + 16001: 745, + 16002: 745, + 16003: 745, + 16004: 745, + 16005: 745, + 16006: 745, + 16007: 745, + 16008: 745, + 16009: 745, + 16010: 745, + 16011: 745, + 16012: 745, + 16013: 745, + 16014: 745, + 16015: 745, + 16016: 745, + 16017: 745, + 16018: 745, + 16019: 745, + 16020: 745, + 16021: 745, + 16022: 745, + 16023: 745, + 16024: 745, + 16025: 745, + 16026: 745, + 16027: 745, + 16028: 745, + 16029: 745, + 16030: 745, + 16031: 745, + 16032: 745, + 16033: 745, + 16034: 745, + 16035: 745, + 16036: 745, + 16037: 745, + 16038: 745, + 16039: 745, + 16040: 745, + 16041: 745, + 16042: 745, + 16043: 745, + 16044: 745, + 16045: 745, + 16046: 745, + 16047: 745, + 16048: 745, + 16049: 745, + 16050: 745, + 16051: 745, + 16052: 745, + 16053: 745, + 16054: 745, + 16055: 745, + 16056: 745, + 16057: 745, + 16058: 745, + 16059: 745, + 16060: 745, + 16061: 745, + 16062: 745, + 16063: 745, + 16064: 745, + 16065: 745, + 16066: 745, + 16067: 745, + 16068: 745, + 16069: 745, + 16070: 745, + 16071: 745, + 16072: 745, + 16073: 745, + 16074: 745, + 16075: 745, + 16076: 745, + 16077: 745, + 16078: 745, + 16079: 745, + 16080: 745, + 16081: 745, + 16082: 745, + 16083: 745, + 16084: 745, + 16085: 745, + 16086: 745, + 16087: 745, + 16088: 745, + 16089: 745, + 16090: 745, + 16091: 745, + 16092: 745, + 16093: 745, + 16094: 745, + 16095: 745, + 16096: 745, + 16097: 745, + 16098: 745, + 16099: 745, + 16100: 745, + 16101: 745, + 16102: 745, + 16103: 745, + 16104: 745, + 16105: 745, + 16106: 745, + 16107: 745, + 16108: 745, + 16109: 745, + 16110: 745, + 16111: 745, + 16112: 745, + 16113: 745, + 16114: 745, + 16115: 745, + 16116: 745, + 16117: 745, + 16118: 745, + 16119: 745, + 16120: 745, + 16121: 745, + 16122: 745, + 16123: 745, + 16124: 745, + 16125: 745, + 16126: 745, + 16127: 745, + 16128: 745, + 16129: 745, + 16130: 745, + 16131: 745, + 16132: 745, + 16133: 745, + 16134: 745, + 16135: 745, + 16136: 745, + 16137: 745, + 16138: 745, + 16139: 745, + 16140: 745, + 16141: 745, + 16142: 745, + 16143: 745, + 16144: 745, + 16145: 745, + 16146: 745, + 16147: 745, + 16148: 745, + 16149: 745, + 16150: 745, + 16151: 745, + 16152: 745, + 16153: 745, + 16154: 745, + 16155: 745, + 16156: 745, + 16157: 745, + 16158: 745, + 16159: 745, + 16160: 745, + 16161: 745, + 16162: 745, + 16163: 745, + 16164: 745, + 16165: 745, + 16166: 745, + 16167: 745, + 16168: 745, + 16169: 745, + 16170: 745, + 16171: 745, + 16172: 745, + 16173: 745, + 16174: 745, + 16175: 745, + 16176: 745, + 16177: 745, + 16178: 745, + 16179: 745, + 16180: 745, + 16181: 745, + 16182: 745, + 16183: 745, + 16184: 745, + 16185: 745, + 16186: 745, + 16187: 745, + 16188: 745, + 16189: 745, + 16190: 745, + 16191: 745, + 16192: 745, + 16193: 745, + 16194: 745, + 16195: 745, + 16196: 745, + 16197: 745, + 16198: 745, + 16199: 745, + 16200: 745, + 16201: 745, + 16202: 745, + 16203: 745, + 16204: 745, + 16205: 745, + 16206: 745, + 16207: 745, + 16208: 745, + 16209: 745, + 16210: 745, + 16211: 745, + 16212: 745, + 16213: 745, + 16214: 745, + 16215: 745, + 16216: 745, + 16217: 745, + 16218: 745, + 16219: 745, + 16220: 745, + 16221: 745, + 16222: 745, + 16223: 745, + 16224: 745, + 16225: 745, + 16226: 745, + 16227: 745, + 16228: 745, + 16229: 745, + 16230: 745, + 16231: 745, + 16232: 745, + 16233: 745, + 16234: 745, + 16235: 745, + 16236: 745, + 16237: 745, + 16238: 745, + 16239: 745, + 16240: 745, + 16241: 745, + 16242: 745, + 16243: 745, + 16244: 745, + 16245: 745, + 16246: 745, + 16247: 745, + 16248: 745, + 16249: 745, + 16250: 745, + 16251: 745, + 16252: 746, + 16253: 746, + 16254: 746, + 16255: 746, + 16256: 746, + 16257: 746, + 16258: 747, + 16259: 748, + 16260: 749, + 16261: 750, + 16262: 751, + 16263: 751, + 16264: 751, + 16265: 751, + 16266: 751, + 16267: 751, + 16268: 752, + 16269: 752, + 16270: 752, + 16271: 752, + 16272: 752, + 16273: 752, + 16274: 752, + 16275: 752, + 16276: 752, + 16277: 752, + 16278: 752, + 16279: 752, + 16280: 752, + 16281: 752, + 16282: 752, + 16283: 752, + 16284: 752, + 16285: 752, + 16286: 752, + 16287: 752, + 16288: 752, + 16289: 752, + 16290: 752, + 16291: 752, + 16292: 752, + 16293: 752, + 16294: 752, + 16295: 752, + 16296: 752, + 16297: 752, + 16298: 752, + 16299: 752, + 16300: 752, + 16301: 752, + 16302: 752, + 16303: 752, + 16304: 752, + 16305: 752, + 16306: 752, + 16307: 752, + 16308: 752, + 16309: 752, + 16310: 752, + 16311: 752, + 16312: 752, + 16313: 752, + 16314: 752, + 16315: 752, + 16316: 752, + 16317: 752, + 16318: 752, + 16319: 752, + 16320: 752, + 16321: 752, + 16322: 752, + 16323: 752, + 16324: 752, + 16325: 752, + 16326: 752, + 16327: 752, + 16328: 752, + 16329: 752, + 16330: 752, + 16331: 752, + 16332: 752, + 16333: 752, + 16334: 752, + 16335: 752, + 16336: 752, + 16337: 752, + 16338: 752, + 16339: 752, + 16340: 752, + 16341: 752, + 16342: 752, + 16343: 752, + 16344: 752, + 16345: 752, + 16346: 752, + 16347: 752, + 16348: 753, + 16349: 753, + 16350: 753, + 16351: 753, + 16352: 753, + 16353: 753, + 16354: 753, + 16355: 753, + 16356: 753, + 16357: 753, + 16358: 753, + 16359: 753, + 16360: 753, + 16361: 753, + 16362: 753, + 16363: 753, + 16364: 753, + 16365: 753, + 16366: 753, + 16367: 753, + 16368: 753, + 16369: 753, + 16370: 753, + 16371: 753, + 16372: 753, + 16373: 753, + 16374: 753, + 16375: 753, + 16376: 753, + 16377: 753, + 16378: 753, + 16379: 753, + 16380: 753, + 16381: 753, + 16382: 753, + 16383: 753, + 16384: 753, + 16385: 753, + 16386: 753, + 16387: 753, + 16388: 753, + 16389: 753, + 16390: 753, + 16391: 753, + 16392: 753, + 16393: 753, + 16394: 753, + 16395: 753, + 16396: 753, + 16397: 753, + 16398: 753, + 16399: 753, + 16400: 753, + 16401: 753, + 16402: 753, + 16403: 753, + 16404: 753, + 16405: 753, + 16406: 753, + 16407: 753, + 16408: 753, + 16409: 753, + 16410: 753, + 16411: 753, + 16412: 753, + 16413: 753, + 16414: 753, + 16415: 753, + 16416: 753, + 16417: 753, + 16418: 753, + 16419: 753, + 16420: 753, + 16421: 753, + 16422: 753, + 16423: 753, + 16424: 753, + 16425: 753, + 16426: 753, + 16427: 753, + 16428: 753, + 16429: 753, + 16430: 753, + 16431: 753, + 16432: 753, + 16433: 753, + 16434: 753, + 16435: 753, + 16436: 753, + 16437: 753, + 16438: 753, + 16439: 753, + 16440: 753, + 16441: 753, + 16442: 753, + 16443: 753, + 16444: 753, + 16445: 753, + 16446: 753, + 16447: 753, + 16448: 753, + 16449: 753, + 16450: 753, + 16451: 753, + 16452: 753, + 16453: 753, + 16454: 753, + 16455: 753, + 16456: 753, + 16457: 753, + 16458: 753, + 16459: 753, + 16460: 753, + 16461: 753, + 16462: 753, + 16463: 753, + 16464: 753, + 16465: 753, + 16466: 753, + 16467: 753, + 16468: 753, + 16469: 753, + 16470: 753, + 16471: 753, + 16472: 753, + 16473: 753, + 16474: 753, + 16475: 753, + 16476: 753, + 16477: 753, + 16478: 753, + 16479: 753, + 16480: 753, + 16481: 753, + 16482: 753, + 16483: 753, + 16484: 753, + 16485: 753, + 16486: 753, + 16487: 753, + 16488: 753, + 16489: 753, + 16490: 753, + 16491: 753, + 16492: 753, + 16493: 753, + 16494: 753, + 16495: 753, + 16496: 753, + 16497: 753, + 16498: 753, + 16499: 753, + 16500: 753, + 16501: 753, + 16502: 753, + 16503: 753, + 16504: 753, + 16505: 753, + 16506: 753, + 16507: 753, + 16508: 753, + 16509: 753, + 16510: 753, + 16511: 753, + 16512: 753, + 16513: 753, + 16514: 753, + 16515: 753, + 16516: 753, + 16517: 753, + 16518: 753, + 16519: 753, + 16520: 753, + 16521: 753, + 16522: 753, + 16523: 753, + 16524: 753, + 16525: 753, + 16526: 753, + 16527: 753, + 16528: 753, + 16529: 753, + 16530: 753, + 16531: 753, + 16532: 753, + 16533: 753, + 16534: 753, + 16535: 753, + 16536: 753, + 16537: 753, + 16538: 753, + 16539: 753, + 16540: 753, + 16541: 753, + 16542: 753, + 16543: 753, + 16544: 753, + 16545: 753, + 16546: 753, + 16547: 753, + 16548: 753, + 16549: 753, + 16550: 753, + 16551: 753, + 16552: 753, + 16553: 753, + 16554: 753, + 16555: 753, + 16556: 753, + 16557: 753, + 16558: 753, + 16559: 753, + 16560: 753, + 16561: 753, + 16562: 753, + 16563: 753, + 16564: 753, + 16565: 753, + 16566: 753, + 16567: 753, + 16568: 753, + 16569: 753, + 16570: 753, + 16571: 753, + 16572: 753, + 16573: 753, + 16574: 753, + 16575: 753, + 16576: 753, + 16577: 753, + 16578: 753, + 16579: 753, + 16580: 753, + 16581: 753, + 16582: 753, + 16583: 753, + 16584: 753, + 16585: 753, + 16586: 753, + 16587: 753, + 16588: 753, + 16589: 753, + 16590: 753, + 16591: 753, + 16592: 753, + 16593: 753, + 16594: 753, + 16595: 753, + 16596: 753, + 16597: 753, + 16598: 753, + 16599: 753, + 16600: 753, + 16601: 753, + 16602: 753, + 16603: 753, + 16604: 753, + 16605: 753, + 16606: 753, + 16607: 753, + 16608: 753, + 16609: 753, + 16610: 753, + 16611: 753, + 16612: 753, + 16613: 753, + 16614: 753, + 16615: 753, + 16616: 753, + 16617: 753, + 16618: 753, + 16619: 753, + 16620: 753, + 16621: 753, + 16622: 753, + 16623: 753, + 16624: 753, + 16625: 753, + 16626: 753, + 16627: 753, + 16628: 753, + 16629: 753, + 16630: 753, + 16631: 753, + 16632: 753, + 16633: 753, + 16634: 753, + 16635: 753, + 16636: 753, + 16637: 753, + 16638: 753, + 16639: 753, + 16640: 753, + 16641: 753, + 16642: 753, + 16643: 753, + 16644: 753, + 16645: 753, + 16646: 753, + 16647: 753, + 16648: 753, + 16649: 753, + 16650: 753, + 16651: 753, + 16652: 753, + 16653: 753, + 16654: 753, + 16655: 753, + 16656: 753, + 16657: 753, + 16658: 753, + 16659: 753, + 16660: 753, + 16661: 753, + 16662: 753, + 16663: 753, + 16664: 753, + 16665: 753, + 16666: 753, + 16667: 753, + 16668: 753, + 16669: 753, + 16670: 753, + 16671: 753, + 16672: 754, + 16673: 755, + 16674: 755, + 16675: 755, + 16676: 755, + 16677: 755, + 16678: 755, + 16679: 755, + 16680: 755, + 16681: 755, + 16682: 755, + 16683: 755, + 16684: 755, + 16685: 755, + 16686: 755, + 16687: 755, + 16688: 755, + 16689: 755, + 16690: 755, + 16691: 755, + 16692: 755, + 16693: 755, + 16694: 755, + 16695: 755, + 16696: 755, + 16697: 755, + 16698: 755, + 16699: 755, + 16700: 755, + 16701: 755, + 16702: 755, + 16703: 755, + 16704: 755, + 16705: 755, + 16706: 755, + 16707: 755, + 16708: 755, + 16709: 755, + 16710: 755, + 16711: 755, + 16712: 755, + 16713: 755, + 16714: 755, + 16715: 755, + 16716: 755, + 16717: 755, + 16718: 755, + 16719: 755, + 16720: 755, + 16721: 755, + 16722: 755, + 16723: 755, + 16724: 755, + 16725: 755, + 16726: 755, + 16727: 755, + 16728: 755, + 16729: 755, + 16730: 755, + 16731: 755, + 16732: 755, + 16733: 755, + 16734: 755, + 16735: 755, + 16736: 755, + 16737: 755, + 16738: 755, + 16739: 755, + 16740: 755, + 16741: 755, + 16742: 755, + 16743: 755, + 16744: 755, + 16745: 755, + 16746: 755, + 16747: 755, + 16748: 755, + 16749: 755, + 16750: 755, + 16751: 755, + 16752: 755, + 16753: 756, + 16754: 756, + 16755: 756, + 16756: 756, + 16757: 756, + 16758: 756, + 16759: 757, + 16760: 757, + 16761: 758, + 16762: 758, + 16763: 758, + 16764: 758, + 16765: 758, + 16766: 758, + 16767: 758, + 16768: 758, + 16769: 758, + 16770: 758, + 16771: 758, + 16772: 758, + 16773: 758, + 16774: 758, + 16775: 758, + 16776: 758, + 16777: 758, + 16778: 758, + 16779: 758, + 16780: 758, + 16781: 758, + 16782: 758, + 16783: 758, + 16784: 758, + 16785: 759, + 16786: 759, + 16787: 759, + 16788: 759, + 16789: 759, + 16790: 759, + 16791: 759, + 16792: 759, + 16793: 759, + 16794: 759, + 16795: 759, + 16796: 759, + 16797: 759, + 16798: 759, + 16799: 759, + 16800: 759, + 16801: 759, + 16802: 759, + 16803: 759, + 16804: 759, + 16805: 759, + 16806: 759, + 16807: 759, + 16808: 759, + 16809: 759, + 16810: 759, + 16811: 759, + 16812: 759, + 16813: 759, + 16814: 759, + 16815: 759, + 16816: 759, + 16817: 759, + 16818: 759, + 16819: 759, + 16820: 759, + 16821: 759, + 16822: 759, + 16823: 759, + 16824: 759, + 16825: 759, + 16826: 759, + 16827: 759, + 16828: 759, + 16829: 759, + 16830: 759, + 16831: 759, + 16832: 759, + 16833: 759, + 16834: 759, + 16835: 759, + 16836: 759, + 16837: 759, + 16838: 759, + 16839: 759, + 16840: 759, + 16841: 759, + 16842: 759, + 16843: 759, + 16844: 759, + 16845: 759, + 16846: 759, + 16847: 759, + 16848: 759, + 16849: 759, + 16850: 759, + 16851: 759, + 16852: 759, + 16853: 759, + 16854: 759, + 16855: 759, + 16856: 759, + 16857: 759, + 16858: 759, + 16859: 759, + 16860: 759, + 16861: 759, + 16862: 759, + 16863: 759, + 16864: 759, + 16865: 759, + 16866: 759, + 16867: 759, + 16868: 759, + 16869: 759, + 16870: 759, + 16871: 759, + 16872: 759, + 16873: 759, + 16874: 759, + 16875: 759, + 16876: 759, + 16877: 759, + 16878: 759, + 16879: 759, + 16880: 759, + 16881: 759, + 16882: 759, + 16883: 759, + 16884: 759, + 16885: 759, + 16886: 759, + 16887: 759, + 16888: 759, + 16889: 759, + 16890: 759, + 16891: 759, + 16892: 759, + 16893: 759, + 16894: 759, + 16895: 759, + 16896: 759, + 16897: 759, + 16898: 759, + 16899: 759, + 16900: 759, + 16901: 759, + 16902: 759, + 16903: 759, + 16904: 759, + 16905: 759, + 16906: 759, + 16907: 759, + 16908: 759, + 16909: 759, + 16910: 759, + 16911: 759, + 16912: 759, + 16913: 759, + 16914: 759, + 16915: 759, + 16916: 759, + 16917: 759, + 16918: 759, + 16919: 759, + 16920: 759, + 16921: 759, + 16922: 759, + 16923: 759, + 16924: 759, + 16925: 759, + 16926: 759, + 16927: 759, + 16928: 759, + 16929: 759, + 16930: 759, + 16931: 759, + 16932: 759, + 16933: 759, + 16934: 759, + 16935: 759, + 16936: 759, + 16937: 759, + 16938: 759, + 16939: 759, + 16940: 759, + 16941: 759, + 16942: 759, + 16943: 759, + 16944: 759, + 16945: 759, + 16946: 759, + 16947: 759, + 16948: 759, + 16949: 759, + 16950: 759, + 16951: 759, + 16952: 759, + 16953: 759, + 16954: 759, + 16955: 759, + 16956: 759, + 16957: 759, + 16958: 759, + 16959: 759, + 16960: 759, + 16961: 759, + 16962: 759, + 16963: 759, + 16964: 759, + 16965: 759, + 16966: 759, + 16967: 759, + 16968: 759, + 16969: 759, + 16970: 759, + 16971: 759, + 16972: 759, + 16973: 759, + 16974: 759, + 16975: 759, + 16976: 759, + 16977: 759, + 16978: 759, + 16979: 759, + 16980: 759, + 16981: 759, + 16982: 759, + 16983: 759, + 16984: 759, + 16985: 759, + 16986: 759, + 16987: 759, + 16988: 759, + 16989: 759, + 16990: 759, + 16991: 759, + 16992: 759, + 16993: 759, + 16994: 759, + 16995: 759, + 16996: 759, + 16997: 759, + 16998: 759, + 16999: 759, + 17000: 759, + 17001: 759, + 17002: 759, + 17003: 759, + 17004: 759, + 17005: 759, + 17006: 759, + 17007: 759, + 17008: 759, + 17009: 759, + 17010: 759, + 17011: 759, + 17012: 759, + 17013: 759, + 17014: 759, + 17015: 759, + 17016: 759, + 17017: 759, + 17018: 759, + 17019: 759, + 17020: 759, + 17021: 759, + 17022: 759, + 17023: 759, + 17024: 759, + 17025: 759, + 17026: 759, + 17027: 759, + 17028: 759, + 17029: 759, + 17030: 759, + 17031: 759, + 17032: 759, + 17033: 759, + 17034: 759, + 17035: 759, + 17036: 759, + 17037: 759, + 17038: 759, + 17039: 759, + 17040: 759, + 17041: 759, + 17042: 759, + 17043: 759, + 17044: 759, + 17045: 759, + 17046: 759, + 17047: 759, + 17048: 759, + 17049: 759, + 17050: 759, + 17051: 759, + 17052: 759, + 17053: 759, + 17054: 759, + 17055: 759, + 17056: 759, + 17057: 759, + 17058: 759, + 17059: 759, + 17060: 759, + 17061: 759, + 17062: 759, + 17063: 759, + 17064: 759, + 17065: 759, + 17066: 759, + 17067: 759, + 17068: 759, + 17069: 759, + 17070: 759, + 17071: 759, + 17072: 759, + 17073: 759, + 17074: 759, + 17075: 759, + 17076: 759, + 17077: 759, + 17078: 759, + 17079: 759, + 17080: 759, + 17081: 759, + 17082: 759, + 17083: 759, + 17084: 759, + 17085: 759, + 17086: 759, + 17087: 759, + 17088: 759, + 17089: 759, + 17090: 759, + 17091: 759, + 17092: 759, + 17093: 759, + 17094: 759, + 17095: 759, + 17096: 759, + 17097: 759, + 17098: 759, + 17099: 759, + 17100: 759, + 17101: 759, + 17102: 759, + 17103: 759, + 17104: 759, + 17105: 759, + 17106: 759, + 17107: 759, + 17108: 759, + 17109: 760, + 17110: 761, + 17111: 762, +} diff --git a/data/block/gen_blocks.go b/data/block/gen_blocks.go new file mode 100644 index 0000000..23f8925 --- /dev/null +++ b/data/block/gen_blocks.go @@ -0,0 +1,199 @@ +// gen_blocks.go generates block information. + +//+build ignore + +package main + +import ( + "encoding/json" + "fmt" + "go/ast" + "go/format" + "go/token" + "net/http" + "os" + "reflect" + "strconv" + + "github.com/iancoleman/strcase" +) + +const ( + infoURL = "https://raw.githubusercontent.com/PrismarineJS/minecraft-data/master/data/pc/1.16.2/blocks.json" +) + +type Block struct { + ID uint32 `json:"id"` + DisplayName string `json:"displayName"` + Name string `json:"name"` + + Hardness float64 `json:"hardness"` + Diggable bool `json:"diggable"` + DropIDs []uint32 `json:"drops"` + NeedsTools map[uint32]bool `json:"harvestTools"` + + MinStateID uint32 `json:"minStateId"` + MaxStateID uint32 `json:"maxStateId"` + + Transparent bool `json:"transparent"` + FilterLightLevel int `json:"filterLight"` + EmitLightLevel int `json:"emitLight"` +} + +func downloadInfo() ([]Block, error) { + resp, err := http.Get(infoURL) + if err != nil { + return nil, err + } + defer resp.Body.Close() + + var data []Block + if err := json.NewDecoder(resp.Body).Decode(&data); err != nil { + return nil, err + } + return data, nil +} + +func makeBlockDeclaration(blocks []Block) *ast.DeclStmt { + out := &ast.DeclStmt{Decl: &ast.GenDecl{Tok: token.VAR}} + + for _, b := range blocks { + t := reflect.TypeOf(b) + fields := make([]ast.Expr, t.NumField()) + + for i := 0; i < t.NumField(); i++ { + ft := t.Field(i) + + var val ast.Expr + switch ft.Type.Kind() { + case reflect.Uint32, reflect.Int: + val = &ast.BasicLit{Kind: token.INT, Value: fmt.Sprint(reflect.ValueOf(b).Field(i))} + case reflect.Float64: + val = &ast.BasicLit{Kind: token.FLOAT, Value: fmt.Sprint(reflect.ValueOf(b).Field(i))} + case reflect.String: + val = &ast.BasicLit{Kind: token.STRING, Value: strconv.Quote(reflect.ValueOf(b).Field(i).String())} + case reflect.Bool: + val = &ast.BasicLit{Kind: token.IDENT, Value: fmt.Sprint(reflect.ValueOf(b).Field(i).Bool())} + + case reflect.Slice: + val = &ast.CompositeLit{ + Type: &ast.ArrayType{ + Elt: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Elem().Name()}, + }, + } + v := reflect.ValueOf(b).Field(i) + switch ft.Type.Elem().Kind() { + case reflect.Uint32, reflect.Int: + for x := 0; x < v.Len(); x++ { + val.(*ast.CompositeLit).Elts = append(val.(*ast.CompositeLit).Elts, &ast.BasicLit{ + Kind: token.INT, + Value: fmt.Sprint(v.Index(x)), + }) + } + } + + case reflect.Map: + // Must be the NeedsTools map of type map[uint32]bool. + m := &ast.CompositeLit{ + Type: &ast.MapType{ + Key: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Key().Name()}, + Value: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Elem().Name()}, + }, + } + iter := reflect.ValueOf(b).Field(i).MapRange() + for iter.Next() { + m.Elts = append(m.Elts, &ast.KeyValueExpr{ + Key: &ast.BasicLit{Kind: token.INT, Value: fmt.Sprint(iter.Key().Uint())}, + Value: &ast.BasicLit{Kind: token.IDENT, Value: fmt.Sprint(iter.Value().Bool())}, + }) + } + + val = m + } + + fields[i] = &ast.KeyValueExpr{ + Key: &ast.Ident{Name: ft.Name}, + Value: val, + } + } + + out.Decl.(*ast.GenDecl).Specs = append(out.Decl.(*ast.GenDecl).Specs, &ast.ValueSpec{ + Names: []*ast.Ident{{Name: strcase.ToCamel(b.Name)}}, + Values: []ast.Expr{ + &ast.CompositeLit{ + Type: &ast.Ident{Name: reflect.TypeOf(b).Name()}, + Elts: fields, + }, + }, + }) + } + + return out +} + +func main() { + blocks, err := downloadInfo() + if err != nil { + fmt.Fprintf(os.Stderr, "Error: %v\n", err) + os.Exit(1) + } + + fmt.Println(`// Package block stores information about blocks in Minecraft. +package block + +import ( + "math" +) + +// BitsPerBlock indicates how many bits are needed to represent all possible +// block states. This value is used to determine the size of the global palette. +var BitsPerBlock = int(math.Ceil(math.Log2(float64(len(StateID))))) + +// ID describes the numeric ID of a block. +type ID uint32 + +// Block describes information about a type of block. +type Block struct { + ID ID + DisplayName string + Name string + + Hardness float64 + Diggable bool + DropIDs []uint32 + NeedsTools map[uint32]bool + + MinStateID uint32 + MaxStateID uint32 + + Transparent bool + FilterLightLevel int + EmitLightLevel int +} + +`) + format.Node(os.Stdout, token.NewFileSet(), makeBlockDeclaration(blocks)) + + fmt.Println() + fmt.Println() + fmt.Println("// ByID is an index of minecraft blocks by their ID.") + fmt.Println("var ByID = map[ID]*Block{") + for _, b := range blocks { + fmt.Printf(" %d: &%s,\n", b.ID, strcase.ToCamel(b.Name)) + } + fmt.Println("}") + + fmt.Println() + fmt.Println("// StateID maps all possible state IDs to a corresponding block ID.") + fmt.Println("var StateID = map[uint32]ID{") + for _, b := range blocks { + if b.MinStateID == b.MaxStateID { + fmt.Printf(" %d: %d,\n", b.MinStateID, b.ID) + } else { + for i := b.MinStateID; i <= b.MaxStateID; i++ { + fmt.Printf(" %d: %d,\n", i, b.ID) + } + } + } + fmt.Println("}") +} diff --git a/data/block/shape/gen_shape.go b/data/block/shape/gen_shape.go new file mode 100644 index 0000000..ab2b980 --- /dev/null +++ b/data/block/shape/gen_shape.go @@ -0,0 +1,132 @@ +// gen_shape.go generates block shape information. + +//+build ignore + +package main + +import ( + "encoding/json" + "fmt" + "net/http" + "os" + "strings" + + "github.com/iancoleman/strcase" +) + +const ( + infoURL = "https://raw.githubusercontent.com/PrismarineJS/minecraft-data/master/data/pc/1.16.1/blockCollisionShapes.json" +) + +func downloadInfo() (map[string]interface{}, error) { + resp, err := http.Get(infoURL) + if err != nil { + return nil, err + } + defer resp.Body.Close() + + var data map[string]interface{} + if err := json.NewDecoder(resp.Body).Decode(&data); err != nil { + return nil, err + } + return data, nil +} + +func main() { + info, err := downloadInfo() + if err != nil { + fmt.Fprintf(os.Stderr, "Error: %v\n", err) + os.Exit(1) + } + + fmt.Println(`// Package shape stores information about the shapes of blocks in Minecraft. +package shape + +import ( + "github.com/Tnze/go-mc/bot/world" + "github.com/Tnze/go-mc/data/block" +) + +// ID describes a numeric shape ID. +type ID uint32 + +// Shape describes how collisions should be tested for an object. +type Shape struct { + ID ID + Boxes []BoundingBox +} + +type BoundingTriplet struct { + X, Y, Z float64 +} + +type BoundingBox struct { + Min,Max BoundingTriplet +} + +// CollisionBoxes returns the set of bounding boxes for that block state ID. +func CollisionBoxes(bStateID world.BlockStatus) ([]BoundingBox, error) { + bID := block.StateID[uint32(bStateID)] + if bID == 0 { + return nil, fmt.Errorf("unknown state ID: %v", bStateID) + } + b, ok := block.ByID[bID] + if !ok { + return nil, fmt.Errorf("unknown block ID: %v", bID) + } + shapes, ok := ByBlockID[bID] + if !ok { + return nil, fmt.Errorf("unknown shape for block ID: %v", bID) + } + shapeIdx := (uint32(bStateID) - b.MinStateID) % uint32(len(shapes)) + if int(shapeIdx) > len(shapes) { + return nil, fmt.Errorf("shape index out of bounds: %v >= %v", shapeIdx, len(shapes)) + } + return Dimensions[shapes[shapeIdx]].Boxes, nil +} + +`) + + fmt.Println() + fmt.Println() + fmt.Println("// ByBlockID is an index of shapes for each minecraft block variant.") + fmt.Println("var ByBlockID = map[block.ID][]ID{") + blocks := info["blocks"].(map[string]interface{}) + for name, shapes := range blocks { + switch s := shapes.(type) { + case []interface{}: + set := make([]string, len(s)) + for i := range s { + set[i] = fmt.Sprint(s[i]) + } + fmt.Printf(" block.%s.ID: []ID{%s},\n", strcase.ToCamel(name), strings.Join(set, ", ")) + default: + fmt.Printf(" block.%s.ID: []ID{%s},\n", strcase.ToCamel(name), fmt.Sprint(s)) + } + } + fmt.Println("}") + + fmt.Println() + fmt.Println() + fmt.Println("// Dimensions describes the bounding boxes of a shape ID.") + fmt.Println("var Dimensions = map[ID]Shape{") + shapes := info["shapes"].(map[string]interface{}) + for id, boxes := range shapes { + fmt.Printf(" %s: Shape{\n", id) + fmt.Printf(" ID: %s,\n", id) + fmt.Printf(" Boxes: []BoundingBox{\n") + for _, box := range boxes.([]interface{}) { + elements := box.([]interface{}) + if len(elements) != 6 { + panic("expected 6 elements") + } + fmt.Printf(" {\n") + fmt.Printf(" Min: BoundingTriplet{X: %v, Y: %v, Z: %v},\n", elements[0], elements[1], elements[2]) + fmt.Printf(" Max: BoundingTriplet{X: %v, Y: %v, Z: %v},\n", elements[3], elements[4], elements[5]) + fmt.Printf(" },\n") + } + fmt.Printf(" },\n") + fmt.Println(" },") + } + fmt.Println("}") +} diff --git a/data/block/shape/shape.go b/data/block/shape/shape.go new file mode 100644 index 0000000..0bb3bf7 --- /dev/null +++ b/data/block/shape/shape.go @@ -0,0 +1,4696 @@ +// Package shape stores information about the shapes of blocks in Minecraft. +package shape + +import ( + "fmt" + + "github.com/Tnze/go-mc/bot/world" + "github.com/Tnze/go-mc/data/block" +) + +// ID describes a numeric shape ID. +type ID uint32 + +// Shape describes how collisions should be tested for an object. +type Shape struct { + ID ID + Boxes []BoundingBox +} + +type BoundingTriplet struct { + X, Y, Z float64 +} + +type BoundingBox struct { + Min, Max BoundingTriplet +} + +// CollisionBoxes returns the set of bounding boxes for that block state ID. +func CollisionBoxes(bStateID world.BlockStatus) ([]BoundingBox, error) { + bID := block.StateID[uint32(bStateID)] + if bID == 0 { + return nil, fmt.Errorf("unknown state ID: %v", bStateID) + } + b, ok := block.ByID[bID] + if !ok { + return nil, fmt.Errorf("unknown block ID: %v", bID) + } + shapes, ok := ByBlockID[bID] + if !ok { + return nil, fmt.Errorf("unknown shape for block ID: %v", bID) + } + shapeIdx := (uint32(bStateID) - b.MinStateID) % uint32(len(shapes)) + if int(shapeIdx) > len(shapes) { + return nil, fmt.Errorf("shape index out of bounds: %v >= %v", shapeIdx, len(shapes)) + } + return Dimensions[shapes[shapeIdx]].Boxes, nil +} + +// ByBlockID is an index of shapes for each minecraft block variant. +var ByBlockID = map[block.ID][]ID{ + block.TurtleEgg.ID: []ID{238, 238, 238, 239, 239, 239, 239, 239, 239, 239, 239, 239}, + block.CreeperWallHead.ID: []ID{158, 159, 160, 161}, + block.MagentaCarpet.ID: []ID{170}, + block.CyanGlazedTerracotta.ID: []ID{1}, + block.LightGrayConcretePowder.ID: []ID{1}, + block.GildedBlackstone.ID: []ID{1}, + block.OakTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.MagentaStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.Sunflower.ID: []ID{0}, + block.AndesiteSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BlackstoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.Cornflower.ID: []ID{0}, + block.OakWallSign.ID: []ID{0}, + block.PottedBlueOrchid.ID: []ID{156}, + block.ShulkerBox.ID: []ID{1}, + block.DarkOakLeaves.ID: []ID{1}, + block.OakDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.CutSandstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.CrimsonRoots.ID: []ID{0}, + block.SmoothRedSandstoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PolishedDioriteStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.SweetBerryBush.ID: []ID{0}, + block.PottedDeadBush.ID: []ID{156}, + block.ActivatorRail.ID: []ID{0}, + block.DarkPrismarineSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.Conduit.ID: []ID{244}, + block.GreenShulkerBox.ID: []ID{1}, + block.BirchLeaves.ID: []ID{1}, + block.PoweredRail.ID: []ID{0}, + block.LightGrayCarpet.ID: []ID{170}, + block.RedSandstone.ID: []ID{1}, + block.LightGrayWool.ID: []ID{1}, + block.PurpurBlock.ID: []ID{1}, + block.TubeCoralFan.ID: []ID{0}, + block.SmoothSandstoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.Granite.ID: []ID{1}, + block.AcaciaLog.ID: []ID{1}, + block.BlueWallBanner.ID: []ID{0}, + block.PolishedAndesiteStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.TwistingVinesPlant.ID: []ID{0}, + block.RedstoneLamp.ID: []ID{1}, + block.AcaciaButton.ID: []ID{0}, + block.OrangeTerracotta.ID: []ID{1}, + block.SandstoneWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.WhiteShulkerBox.ID: []ID{1}, + block.LightGrayGlazedTerracotta.ID: []ID{1}, + block.BrownConcrete.ID: []ID{1}, + block.YellowConcretePowder.ID: []ID{1}, + block.RedMushroom.ID: []ID{0}, + block.JungleWallSign.ID: []ID{0}, + block.AcaciaTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.BoneBlock.ID: []ID{1}, + block.WarpedWallSign.ID: []ID{0}, + block.StoneBricks.ID: []ID{1}, + block.EndStone.ID: []ID{1}, + block.DragonEgg.ID: []ID{111}, + block.SoulTorch.ID: []ID{0}, + block.SpruceWood.ID: []ID{1}, + block.OrangeTulip.ID: []ID{0}, + block.TallGrass.ID: []ID{0}, + block.BrownWallBanner.ID: []ID{0}, + block.VoidAir.ID: []ID{0}, + block.PottedCrimsonRoots.ID: []ID{156}, + block.BirchWallSign.ID: []ID{0}, + block.Lever.ID: []ID{0}, + block.MossyStoneBricks.ID: []ID{1}, + block.RedMushroomBlock.ID: []ID{1}, + block.MagentaShulkerBox.ID: []ID{1}, + block.GraniteStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.OrangeCarpet.ID: []ID{170}, + block.YellowGlazedTerracotta.ID: []ID{1}, + block.Bamboo.ID: []ID{245}, + block.WhiteWool.ID: []ID{1}, + block.PottedBirchSapling.ID: []ID{156}, + block.DragonWallHead.ID: []ID{158, 159, 160, 161}, + block.CyanTerracotta.ID: []ID{1}, + block.PinkStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.GreenBanner.ID: []ID{0}, + block.LimeWallBanner.ID: []ID{0}, + block.DarkOakDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.YellowStainedGlass.ID: []ID{1}, + block.TripwireHook.ID: []ID{0}, + block.CommandBlock.ID: []ID{1}, + block.OrangeStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.Campfire.ID: []ID{268}, + block.GrassBlock.ID: []ID{1}, + block.EmeraldBlock.ID: []ID{1}, + block.ChiseledQuartzBlock.ID: []ID{1}, + block.DeadFireCoralWallFan.ID: []ID{0}, + block.StrippedSpruceWood.ID: []ID{1}, + block.Loom.ID: []ID{1}, + block.Lectern.ID: []ID{255}, + block.YellowBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.BlackCarpet.ID: []ID{170}, + block.NetherBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.SeaPickle.ID: []ID{240, 240, 241, 241, 242, 242, 243, 243}, + block.CutSandstone.ID: []ID{1}, + block.PistonHead.ID: []ID{13, 13, 12, 12, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23}, + block.SnowBlock.ID: []ID{1}, + block.Melon.ID: []ID{1}, + block.AcaciaStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.RedConcrete.ID: []ID{1}, + block.FireCoralBlock.ID: []ID{1}, + block.Jigsaw.ID: []ID{1}, + block.Water.ID: []ID{0}, + block.GoldOre.ID: []ID{1}, + block.LilyOfTheValley.ID: []ID{0}, + block.GreenTerracotta.ID: []ID{1}, + block.WarpedWartBlock.ID: []ID{1}, + block.StrippedCrimsonStem.ID: []ID{1}, + block.Jukebox.ID: []ID{1}, + block.EnderChest.ID: []ID{48}, + block.LightBlueCarpet.ID: []ID{170}, + block.DeadFireCoralFan.ID: []ID{0}, + block.AcaciaFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.Furnace.ID: []ID{1}, + block.SpruceSign.ID: []ID{0}, + block.Hopper.ID: []ID{164, 165, 166, 167, 168, 164, 165, 166, 167, 168}, + block.BlueBanner.ID: []ID{0}, + block.DeadTubeCoralBlock.ID: []ID{1}, + block.SoulLantern.ID: []ID{267, 266}, + block.LightBlueBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.PottedBrownMushroom.ID: []ID{156}, + block.PurpleBanner.ID: []ID{0}, + block.SpruceDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.CyanShulkerBox.ID: []ID{1}, + block.PinkGlazedTerracotta.ID: []ID{1}, + block.MagentaConcretePowder.ID: []ID{1}, + block.BrownWool.ID: []ID{1}, + block.PottedRedTulip.ID: []ID{156}, + block.PottedCornflower.ID: []ID{156}, + block.OakButton.ID: []ID{0}, + block.GreenConcrete.ID: []ID{1}, + block.PottedWarpedRoots.ID: []ID{156}, + block.StrippedDarkOakLog.ID: []ID{1}, + block.GrayBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.CobblestoneWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.CreeperHead.ID: []ID{157}, + block.DarkOakFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.BlackConcrete.ID: []ID{1}, + block.Bedrock.ID: []ID{1}, + block.LapisOre.ID: []ID{1}, + block.Cobweb.ID: []ID{0}, + block.HayBlock.ID: []ID{1}, + block.FireCoralWallFan.ID: []ID{0}, + block.WeepingVines.ID: []ID{0}, + block.DarkOakPlanks.ID: []ID{1}, + block.RedSand.ID: []ID{1}, + block.JungleLeaves.ID: []ID{1}, + block.PottedSpruceSapling.ID: []ID{156}, + block.StrippedJungleWood.ID: []ID{1}, + block.DarkPrismarineStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.GreenCarpet.ID: []ID{170}, + block.GrayConcrete.ID: []ID{1}, + block.PlayerHead.ID: []ID{157}, + block.RedstoneBlock.ID: []ID{1}, + block.StoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.OrangeGlazedTerracotta.ID: []ID{1}, + block.BirchWood.ID: []ID{1}, + block.BrownBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.AcaciaSign.ID: []ID{0}, + block.Snow.ID: []ID{0, 58, 59, 60, 61, 62, 10, 63}, + block.HoneyBlock.ID: []ID{64}, + block.WarpedFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.Ice.ID: []ID{1}, + block.CyanStainedGlass.ID: []ID{1}, + block.PottedPoppy.ID: []ID{156}, + block.PolishedAndesiteSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.SeaLantern.ID: []ID{1}, + block.MossyStoneBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.Stonecutter.ID: []ID{256}, + block.AcaciaPlanks.ID: []ID{1}, + block.JungleLog.ID: []ID{1}, + block.Chest.ID: []ID{48, 48, 49, 49, 50, 50, 48, 48, 50, 50, 49, 49, 48, 48, 51, 51, 52, 52, 48, 48, 52, 52, 51, 51}, + block.Glowstone.ID: []ID{1}, + block.CrackedPolishedBlackstoneBricks.ID: []ID{1}, + block.BrownCarpet.ID: []ID{170}, + block.ChorusPlant.ID: []ID{175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 174}, + block.MossyStoneBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.CrimsonFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.CrimsonPlanks.ID: []ID{1}, + block.WarpedDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.MossyCobblestone.ID: []ID{1}, + block.LightGrayStainedGlass.ID: []ID{1}, + block.DaylightDetector.ID: []ID{60}, + block.CoalBlock.ID: []ID{1}, + block.JungleSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.GoldBlock.ID: []ID{1}, + block.CraftingTable.ID: []ID{1}, + block.AcaciaWallSign.ID: []ID{0}, + block.OrangeBanner.ID: []ID{0}, + block.AcaciaDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.HornCoralWallFan.ID: []ID{0}, + block.CrimsonFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.OrangeWool.ID: []ID{1}, + block.PurpleStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.SlimeBlock.ID: []ID{1}, + block.GrayBanner.ID: []ID{0}, + block.LightGrayWallBanner.ID: []ID{0}, + block.JungleDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.SoulFire.ID: []ID{0}, + block.ChiseledStoneBricks.ID: []ID{1}, + block.PottedJungleSapling.ID: []ID{156}, + block.SpruceButton.ID: []ID{0}, + block.WhiteCarpet.ID: []ID{170}, + block.PinkCarpet.ID: []ID{170}, + block.BrownBanner.ID: []ID{0}, + block.IronBars.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.EndPortalFrame.ID: []ID{110, 110, 110, 110, 109, 109, 109, 109}, + block.LightBlueTerracotta.ID: []ID{1}, + block.LimeStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.ZombieHead.ID: []ID{157}, + block.StoneBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.SmoothSandstone.ID: []ID{1}, + block.HornCoralBlock.ID: []ID{1}, + block.LimeStainedGlass.ID: []ID{1}, + block.NetherBrickFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.PottedFern.ID: []ID{156}, + block.JungleButton.ID: []ID{0}, + block.HoneycombBlock.ID: []ID{1}, + block.WarpedButton.ID: []ID{0}, + block.AncientDebris.ID: []ID{1}, + block.PolishedDiorite.ID: []ID{1}, + block.PurpleWallBanner.ID: []ID{0}, + block.BlackGlazedTerracotta.ID: []ID{1}, + block.Grindstone.ID: []ID{248, 248, 249, 249, 247, 250, 251, 252, 253, 253, 254, 254}, + block.Tripwire.ID: []ID{0}, + block.PottedCactus.ID: []ID{156}, + block.QuartzPillar.ID: []ID{1}, + block.QuartzSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BlueBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.BlueWool.ID: []ID{1}, + block.OakStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.Cactus.ID: []ID{64}, + block.CrimsonSign.ID: []ID{0}, + block.MagmaBlock.ID: []ID{1}, + block.KelpPlant.ID: []ID{0}, + block.RedNetherBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.StrippedCrimsonHyphae.ID: []ID{1}, + block.PinkStainedGlass.ID: []ID{1}, + block.PottedOxeyeDaisy.ID: []ID{156}, + block.BlackTerracotta.ID: []ID{1}, + block.PrismarineSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.Diorite.ID: []ID{1}, + block.Dandelion.ID: []ID{0}, + block.Farmland.ID: []ID{53}, + block.Netherrack.ID: []ID{1}, + block.DarkOakFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.StructureVoid.ID: []ID{0}, + block.PrismarineWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.PurpleStainedGlass.ID: []ID{1}, + block.WhiteBanner.ID: []ID{0}, + block.SmoothQuartz.ID: []ID{1}, + block.WhiteGlazedTerracotta.ID: []ID{1}, + block.Dirt.ID: []ID{1}, + block.SpruceSapling.ID: []ID{0}, + block.BrownMushroom.ID: []ID{0}, + block.SpruceWallSign.ID: []ID{0}, + block.CrimsonHyphae.ID: []ID{1}, + block.OakSapling.ID: []ID{0}, + block.DeadBrainCoral.ID: []ID{0}, + block.NetherBrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.CrimsonSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.RespawnAnchor.ID: []ID{1}, + block.WitherRose.ID: []ID{0}, + block.PlayerWallHead.ID: []ID{158, 159, 160, 161}, + block.Chain.ID: []ID{270}, + block.CrimsonFungus.ID: []ID{0}, + block.LightGrayTerracotta.ID: []ID{1}, + block.SmoothStone.ID: []ID{1}, + block.SoulSoil.ID: []ID{1}, + block.MossyCobblestoneWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.PottedWhiteTulip.ID: []ID{156}, + block.QuartzStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.BrainCoralFan.ID: []ID{0}, + block.TubeCoralWallFan.ID: []ID{0}, + block.EndStoneBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PolishedBlackstoneWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.LapisBlock.ID: []ID{1}, + block.OakFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.WitherSkeletonWallSkull.ID: []ID{158, 159, 160, 161}, + block.CyanConcretePowder.ID: []ID{1}, + block.Vine.ID: []ID{0}, + block.OakSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BlueConcrete.ID: []ID{1}, + block.GrayConcretePowder.ID: []ID{1}, + block.StrippedOakWood.ID: []ID{1}, + block.Grass.ID: []ID{0}, + block.Torch.ID: []ID{0}, + block.DarkOakPressurePlate.ID: []ID{0}, + block.BlackWallBanner.ID: []ID{0}, + block.BrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.WhiteConcrete.ID: []ID{1}, + block.FireCoralFan.ID: []ID{0}, + block.TallSeagrass.ID: []ID{0}, + block.CyanWool.ID: []ID{1}, + block.GrayTerracotta.ID: []ID{1}, + block.GreenWallBanner.ID: []ID{0}, + block.DeadBrainCoralBlock.ID: []ID{1}, + block.DeadHornCoral.ID: []ID{0}, + block.JungleSapling.ID: []ID{0}, + block.BirchStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PottedDarkOakSapling.ID: []ID{156}, + block.BlackShulkerBox.ID: []ID{1}, + block.GrayCarpet.ID: []ID{170}, + block.PackedIce.ID: []ID{1}, + block.RedBanner.ID: []ID{0}, + block.MossyStoneBrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.PolishedAndesite.ID: []ID{1}, + block.Cobblestone.ID: []ID{1}, + block.MagentaBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.DarkOakWallSign.ID: []ID{0}, + block.GraniteWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.SoulCampfire.ID: []ID{268}, + block.QuartzBricks.ID: []ID{1}, + block.GrassPath.ID: []ID{53}, + block.PolishedBlackstoneBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.RedWool.ID: []ID{1}, + block.Tnt.ID: []ID{1}, + block.NetherPortal.ID: []ID{0}, + block.EndPortal.ID: []ID{0}, + block.BambooSapling.ID: []ID{0}, + block.CrimsonNylium.ID: []ID{1}, + block.AzureBluet.ID: []ID{0}, + block.IronBlock.ID: []ID{1}, + block.Spawner.ID: []ID{1}, + block.BirchSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.Dropper.ID: []ID{1}, + block.Barrier.ID: []ID{1}, + block.TwistingVines.ID: []ID{0}, + block.CrimsonStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.IronOre.ID: []ID{1}, + block.OakLog.ID: []ID{1}, + block.OakPressurePlate.ID: []ID{0}, + block.ChippedAnvil.ID: []ID{162, 162, 163, 163}, + block.PottedAzureBluet.ID: []ID{156}, + block.DeadBrainCoralFan.ID: []ID{0}, + block.WarpedRoots.ID: []ID{0}, + block.CrimsonDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.OakWood.ID: []ID{1}, + block.BrownTerracotta.ID: []ID{1}, + block.RedSandstoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.BlueIce.ID: []ID{1}, + block.DeadHornCoralWallFan.ID: []ID{0}, + block.WarpedSign.ID: []ID{0}, + block.Blackstone.ID: []ID{1}, + block.StrippedAcaciaWood.ID: []ID{1}, + block.OakLeaves.ID: []ID{1}, + block.BrownMushroomBlock.ID: []ID{1}, + block.GreenStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.LimeConcretePowder.ID: []ID{1}, + block.TubeCoralBlock.ID: []ID{1}, + block.SmoothQuartzStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.DioriteStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.StrippedAcaciaLog.ID: []ID{1}, + block.BlueTerracotta.ID: []ID{1}, + block.SpruceFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.EndRod.ID: []ID{172, 173, 172, 173, 171, 171}, + block.RedStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.StrippedWarpedStem.ID: []ID{1}, + block.SprucePlanks.ID: []ID{1}, + block.StrippedDarkOakWood.ID: []ID{1}, + block.NetherQuartzOre.ID: []ID{1}, + block.PurpleTerracotta.ID: []ID{1}, + block.BlackBanner.ID: []ID{0}, + block.PinkTerracotta.ID: []ID{1}, + block.CobblestoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.FrostedIce.ID: []ID{1}, + block.WhiteBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.InfestedStone.ID: []ID{1}, + block.NetherBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.SpruceStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.JungleSign.ID: []ID{0}, + block.Cauldron.ID: []ID{108}, + block.WarpedPlanks.ID: []ID{1}, + block.PinkWallBanner.ID: []ID{0}, + block.GrayGlazedTerracotta.ID: []ID{1}, + block.CrimsonWallSign.ID: []ID{0}, + block.BirchPlanks.ID: []ID{1}, + block.StonePressurePlate.ID: []ID{0}, + block.SugarCane.ID: []ID{0}, + block.PottedRedMushroom.ID: []ID{156}, + block.Bell.ID: []ID{257, 257, 257, 257, 258, 258, 258, 258, 259, 259, 259, 259, 259, 259, 259, 259, 260, 260, 261, 261, 262, 262, 263, 263, 264, 264, 264, 264, 265, 265, 265, 265}, + block.CrimsonStem.ID: []ID{1}, + block.WeepingVinesPlant.ID: []ID{0}, + block.BirchSign.ID: []ID{0}, + block.SpruceTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.Cocoa.ID: []ID{112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123}, + block.PottedAllium.ID: []ID{156}, + block.PottedOakSapling.ID: []ID{156}, + block.CyanBanner.ID: []ID{0}, + block.OrangeConcretePowder.ID: []ID{1}, + block.LightBlueConcretePowder.ID: []ID{1}, + block.StrippedJungleLog.ID: []ID{1}, + block.LimeWool.ID: []ID{1}, + block.RedstoneWire.ID: []ID{0}, + block.Repeater.ID: []ID{58}, + block.BeeNest.ID: []ID{1}, + block.PolishedGraniteSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.StoneBrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.EndStoneBrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.DioriteWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.PinkWool.ID: []ID{1}, + block.NetherWart.ID: []ID{0}, + block.Observer.ID: []ID{1}, + block.RedGlazedTerracotta.ID: []ID{1}, + block.PolishedBlackstoneBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.BirchFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.PurpleGlazedTerracotta.ID: []ID{1}, + block.DarkOakSapling.ID: []ID{0}, + block.PurpleWool.ID: []ID{1}, + block.CobblestoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PottedDandelion.ID: []ID{156}, + block.RoseBush.ID: []ID{0}, + block.DeadTubeCoralFan.ID: []ID{0}, + block.HornCoralFan.ID: []ID{0}, + block.WarpedFungus.ID: []ID{0}, + block.Wheat.ID: []ID{0}, + block.BlackStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.Lilac.ID: []ID{0}, + block.PurpurStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.BrownStainedGlass.ID: []ID{1}, + block.YellowStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.AcaciaFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.DeadBubbleCoralWallFan.ID: []ID{0}, + block.BlueConcretePowder.ID: []ID{1}, + block.JunglePlanks.ID: []ID{1}, + block.StoneBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.BirchButton.ID: []ID{0}, + block.LightGrayStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.BrownGlazedTerracotta.ID: []ID{1}, + block.BirchSapling.ID: []ID{0}, + block.JunglePressurePlate.ID: []ID{0}, + block.BlueStainedGlass.ID: []ID{1}, + block.Comparator.ID: []ID{58}, + block.PottedLilyOfTheValley.ID: []ID{156}, + block.SpruceSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BlueShulkerBox.ID: []ID{1}, + block.Target.ID: []ID{1}, + block.LimeBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.AcaciaPressurePlate.ID: []ID{0}, + block.JungleTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.AcaciaSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.SmoothStoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.ChainCommandBlock.ID: []ID{1}, + block.WhiteConcretePowder.ID: []ID{1}, + block.SoulWallTorch.ID: []ID{0}, + block.Podzol.ID: []ID{1}, + block.Lava.ID: []ID{0}, + block.BlackStainedGlass.ID: []ID{1}, + block.PottedPinkTulip.ID: []ID{156}, + block.PurpurSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BubbleCoralBlock.ID: []ID{1}, + block.BubbleCoralWallFan.ID: []ID{0}, + block.AndesiteWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.DarkOakLog.ID: []ID{1}, + block.Fire.ID: []ID{0}, + block.Anvil.ID: []ID{162, 162, 163, 163}, + block.LightBlueWallBanner.ID: []ID{0}, + block.BlackstoneSlab.ID: []ID{1}, + block.WarpedTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.DarkOakWood.ID: []ID{1}, + block.Carrots.ID: []ID{0}, + block.YellowShulkerBox.ID: []ID{1}, + block.WarpedStem.ID: []ID{1}, + block.Terracotta.ID: []ID{1}, + block.YellowBanner.ID: []ID{0}, + block.PurpurPillar.ID: []ID{1}, + block.FireCoral.ID: []ID{0}, + block.LightBlueWool.ID: []ID{1}, + block.JackOLantern.ID: []ID{1}, + block.DarkOakButton.ID: []ID{0}, + block.PurpleCarpet.ID: []ID{170}, + block.PolishedBlackstoneButton.ID: []ID{0}, + block.LimeShulkerBox.ID: []ID{1}, + block.PinkConcretePowder.ID: []ID{1}, + block.RedNetherBrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.Stone.ID: []ID{1}, + block.DiamondBlock.ID: []ID{1}, + block.Clay.ID: []ID{1}, + block.RedWallBanner.ID: []ID{0}, + block.EndGateway.ID: []ID{0}, + block.GrayShulkerBox.ID: []ID{1}, + block.BrainCoralBlock.ID: []ID{1}, + block.BrainCoral.ID: []ID{0}, + block.JungleWood.ID: []ID{1}, + block.OxeyeDaisy.ID: []ID{0}, + block.WhiteWallBanner.ID: []ID{0}, + block.SandstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BlastFurnace.ID: []ID{1}, + block.PolishedBlackstonePressurePlate.ID: []ID{0}, + block.BirchLog.ID: []ID{1}, + block.JungleFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.DetectorRail.ID: []ID{0}, + block.RedSandstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.OakPlanks.ID: []ID{1}, + block.WallTorch.ID: []ID{0}, + block.YellowCarpet.ID: []ID{170}, + block.SpruceFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.AcaciaWood.ID: []ID{1}, + block.PinkTulip.ID: []ID{0}, + block.BlueStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.ChiseledNetherBricks.ID: []ID{1}, + block.WarpedSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BlackWool.ID: []ID{1}, + block.SandstoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.SmoothRedSandstone.ID: []ID{1}, + block.DeadFireCoralBlock.ID: []ID{1}, + block.PottedWitherRose.ID: []ID{156}, + block.PrismarineBricks.ID: []ID{1}, + block.PrismarineBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.LimeConcrete.ID: []ID{1}, + block.OakSign.ID: []ID{0}, + block.Cake.ID: []ID{81, 82, 83, 84, 85, 86, 87}, + block.InfestedStoneBricks.ID: []ID{1}, + block.FlowerPot.ID: []ID{156}, + block.WarpedStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.Beehive.ID: []ID{1}, + block.Basalt.ID: []ID{1}, + block.Sponge.ID: []ID{1}, + block.Sandstone.ID: []ID{1}, + block.BrainCoralWallFan.ID: []ID{0}, + block.DioriteSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.HornCoral.ID: []ID{0}, + block.CaveAir.ID: []ID{0}, + block.SmoothRedSandstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.WarpedPressurePlate.ID: []ID{0}, + block.GreenWool.ID: []ID{1}, + block.NetherBricks.ID: []ID{1}, + block.SkeletonSkull.ID: []ID{157}, + block.MagentaBanner.ID: []ID{0}, + block.WarpedHyphae.ID: []ID{1}, + block.StrippedOakLog.ID: []ID{1}, + block.RedCarpet.ID: []ID{170}, + block.GreenGlazedTerracotta.ID: []ID{1}, + block.YellowConcrete.ID: []ID{1}, + block.AndesiteStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.AcaciaSapling.ID: []ID{0}, + block.CoalOre.ID: []ID{1}, + block.CutRedSandstone.ID: []ID{1}, + block.BubbleColumn.ID: []ID{0}, + block.CartographyTable.ID: []ID{1}, + block.InfestedMossyStoneBricks.ID: []ID{1}, + block.AttachedPumpkinStem.ID: []ID{0}, + block.PrismarineStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PolishedDioriteSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.PurpleConcrete.ID: []ID{1}, + block.RedSandstoneWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.Smoker.ID: []ID{1}, + block.FletchingTable.ID: []ID{1}, + block.Sand.ID: []ID{1}, + block.RedstoneTorch.ID: []ID{0}, + block.MagentaStainedGlass.ID: []ID{1}, + block.WitherSkeletonSkull.ID: []ID{157}, + block.ZombieWallHead.ID: []ID{158, 159, 160, 161}, + block.LightBlueStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.CrimsonTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.Air.ID: []ID{0}, + block.GreenBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.StickyPiston.ID: []ID{6, 7, 8, 9, 10, 11, 1, 1, 1, 1, 1, 1}, + block.DiamondOre.ID: []ID{1}, + block.DarkPrismarine.ID: []ID{1}, + block.BlackConcretePowder.ID: []ID{1}, + block.Kelp.ID: []ID{0}, + block.SmithingTable.ID: []ID{1}, + block.StrippedBirchWood.ID: []ID{1}, + block.Glass.ID: []ID{1}, + block.RedTulip.ID: []ID{0}, + block.CyanStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.LightGrayConcrete.ID: []ID{1}, + block.DeadBrainCoralWallFan.ID: []ID{0}, + block.Lantern.ID: []ID{267, 266}, + block.ChiseledSandstone.ID: []ID{1}, + block.Seagrass.ID: []ID{0}, + block.Pumpkin.ID: []ID{1}, + block.JungleFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.MagentaTerracotta.ID: []ID{1}, + block.Peony.ID: []ID{0}, + block.CutRedSandstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.EndStoneBricks.ID: []ID{1}, + block.Piston.ID: []ID{6, 7, 8, 9, 10, 11, 1, 1, 1, 1, 1, 1}, + block.CarvedPumpkin.ID: []ID{1}, + block.PumpkinStem.ID: []ID{0}, + block.TrappedChest.ID: []ID{48, 48, 49, 49, 50, 50, 48, 48, 50, 50, 49, 49, 48, 48, 51, 51, 52, 52, 48, 48, 52, 52, 51, 51}, + block.RepeatingCommandBlock.ID: []ID{1}, + block.RedNetherBricks.ID: []ID{1}, + block.PottedBamboo.ID: []ID{156}, + block.CrimsonPressurePlate.ID: []ID{0}, + block.MagentaWool.ID: []ID{1}, + block.BlueOrchid.ID: []ID{0}, + block.AttachedMelonStem.ID: []ID{0}, + block.NetherWartBlock.ID: []ID{1}, + block.LightGrayShulkerBox.ID: []ID{1}, + block.ChiseledPolishedBlackstone.ID: []ID{1}, + block.CryingObsidian.ID: []ID{1}, + block.BirchPressurePlate.ID: []ID{0}, + block.BrewingStand.ID: []ID{107}, + block.ChorusFlower.ID: []ID{1}, + block.PolishedBasalt.ID: []ID{1}, + block.NetherGoldOre.ID: []ID{1}, + block.WhiteStainedGlass.ID: []ID{1}, + block.OrangeStainedGlass.ID: []ID{1}, + block.CrackedStoneBricks.ID: []ID{1}, + block.IronTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.DarkOakSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.MagentaConcrete.ID: []ID{1}, + block.DeadBubbleCoralFan.ID: []ID{0}, + block.RedNetherBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.LightBlueStainedGlass.ID: []ID{1}, + block.Mycelium.ID: []ID{1}, + block.WhiteStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.CyanWallBanner.ID: []ID{0}, + block.Scaffolding.ID: []ID{246}, + block.Composter.ID: []ID{269}, + block.DeadHornCoralBlock.ID: []ID{1}, + block.BlackstoneWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.WetSponge.ID: []ID{1}, + block.RedStainedGlass.ID: []ID{1}, + block.InfestedCrackedStoneBricks.ID: []ID{1}, + block.GlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.YellowWallBanner.ID: []ID{0}, + block.PinkConcrete.ID: []ID{1}, + block.PurpleConcretePowder.ID: []ID{1}, + block.PolishedBlackstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.Poppy.ID: []ID{0}, + block.QuartzBlock.ID: []ID{1}, + block.Prismarine.ID: []ID{1}, + block.LargeFern.ID: []ID{0}, + block.LightGrayBanner.ID: []ID{0}, + block.DeadTubeCoral.ID: []ID{0}, + block.MossyCobblestoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PurpleBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.MovingPiston.ID: []ID{0}, + block.Ladder.ID: []ID{54, 54, 57, 57, 56, 56, 55, 55}, + block.BubbleCoral.ID: []ID{0}, + block.BirchFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.MagentaGlazedTerracotta.ID: []ID{1}, + block.SmoothSandstoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.BrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.SpruceLog.ID: []ID{1}, + block.AcaciaLeaves.ID: []ID{1}, + block.Fern.ID: []ID{0}, + block.GrayWool.ID: []ID{1}, + block.Dispenser.ID: []ID{1}, + block.NoteBlock.ID: []ID{1}, + block.DriedKelpBlock.ID: []ID{1}, + block.OakFence.ID: []ID{66, 67, 66, 67, 68, 69, 68, 69, 70, 71, 70, 71, 72, 73, 72, 73, 74, 75, 74, 75, 76, 77, 76, 77, 78, 79, 78, 79, 80, 65, 80, 65}, + block.ChiseledRedSandstone.ID: []ID{1}, + block.TubeCoral.ID: []ID{0}, + block.StrippedWarpedHyphae.ID: []ID{1}, + block.CyanConcrete.ID: []ID{1}, + block.GraniteSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.PolishedBlackstoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.PinkBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.DamagedAnvil.ID: []ID{162, 162, 163, 163}, + block.BlueCarpet.ID: []ID{170}, + block.LightBlueConcrete.ID: []ID{1}, + block.PottedWarpedFungus.ID: []ID{156}, + block.Bricks.ID: []ID{1}, + block.EnchantingTable.ID: []ID{10}, + block.Barrel.ID: []ID{1}, + block.WarpedFenceGate.ID: []ID{0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 72, 72, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75, 0, 0, 75, 75}, + block.DragonHead.ID: []ID{157}, + block.PurpleShulkerBox.ID: []ID{1}, + block.LimeGlazedTerracotta.ID: []ID{1}, + block.BrownConcretePowder.ID: []ID{1}, + block.Rail.ID: []ID{0}, + block.RedstoneWallTorch.ID: []ID{0}, + block.GrayStainedGlass.ID: []ID{1}, + block.InfestedCobblestone.ID: []ID{1}, + block.RedBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.LimeBanner.ID: []ID{0}, + block.NetheriteBlock.ID: []ID{1}, + block.CrackedNetherBricks.ID: []ID{1}, + block.PolishedGranite.ID: []ID{1}, + block.HeavyWeightedPressurePlate.ID: []ID{0}, + block.PrismarineBrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.LightBlueShulkerBox.ID: []ID{1}, + block.GreenConcretePowder.ID: []ID{1}, + block.DeadBubbleCoral.ID: []ID{0}, + block.EndStoneBrickSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.PottedCrimsonFungus.ID: []ID{156}, + block.InfestedChiseledStoneBricks.ID: []ID{1}, + block.EmeraldOre.ID: []ID{1}, + block.PottedOrangeTulip.ID: []ID{156}, + block.LightWeightedPressurePlate.ID: []ID{0}, + block.Potatoes.ID: []ID{0}, + block.SkeletonWallSkull.ID: []ID{158, 159, 160, 161}, + block.BrownStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.CyanCarpet.ID: []ID{170}, + block.CoarseDirt.ID: []ID{1}, + block.DeadBush.ID: []ID{0}, + block.YellowWool.ID: []ID{1}, + block.BrickStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.LightBlueGlazedTerracotta.ID: []ID{1}, + block.BubbleCoralFan.ID: []ID{0}, + block.PolishedBlackstone.ID: []ID{1}, + block.DeadTubeCoralWallFan.ID: []ID{0}, + block.StructureBlock.ID: []ID{1}, + block.Obsidian.ID: []ID{1}, + block.PinkBanner.ID: []ID{0}, + block.PinkShulkerBox.ID: []ID{1}, + block.BlueGlazedTerracotta.ID: []ID{1}, + block.GrayWallBanner.ID: []ID{0}, + block.CrimsonButton.ID: []ID{0}, + block.StrippedSpruceLog.ID: []ID{1}, + block.MushroomStem.ID: []ID{1}, + block.LilyPad.ID: []ID{106}, + block.YellowTerracotta.ID: []ID{1}, + block.DeadBubbleCoralBlock.ID: []ID{1}, + block.Lodestone.ID: []ID{1}, + block.SpruceLeaves.ID: []ID{1}, + block.DarkOakSign.ID: []ID{0}, + block.MelonStem.ID: []ID{0}, + block.GrayStainedGlassPane.ID: []ID{91, 92, 91, 92, 93, 94, 93, 94, 95, 96, 95, 96, 97, 98, 97, 98, 99, 100, 99, 100, 101, 102, 101, 102, 103, 104, 103, 104, 105, 90, 105, 90}, + block.GreenStainedGlass.ID: []ID{1}, + block.BirchTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.MagentaWallBanner.ID: []ID{0}, + block.StrippedBirchLog.ID: []ID{1}, + block.SmoothQuartzSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.NetherSprouts.ID: []ID{0}, + block.PolishedBlackstoneBrickWall.ID: []ID{125, 126, 125, 126, 127, 128, 127, 128, 129, 130, 129, 130, 131, 132, 131, 132, 133, 134, 133, 134, 135, 136, 135, 136, 137, 138, 137, 138, 139, 140, 139, 140, 141, 142, 141, 142, 143, 144, 143, 144, 145, 146, 145, 146, 147, 148, 147, 148, 149, 150, 149, 150, 151, 152, 151, 152, 153, 124, 153, 124, 154, 155, 154, 155}, + block.PetrifiedOakSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.Beetroots.ID: []ID{0}, + block.PolishedGraniteStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.Gravel.ID: []ID{1}, + block.SprucePressurePlate.ID: []ID{0}, + block.PottedAcaciaSapling.ID: []ID{156}, + block.LimeCarpet.ID: []ID{170}, + block.SoulSand.ID: []ID{63}, + block.JungleStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.LimeTerracotta.ID: []ID{1}, + block.OrangeWallBanner.ID: []ID{0}, + block.OrangeBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.Allium.ID: []ID{0}, + block.WhiteTulip.ID: []ID{0}, + block.Bookshelf.ID: []ID{1}, + block.OrangeShulkerBox.ID: []ID{1}, + block.PolishedBlackstoneBricks.ID: []ID{1}, + block.BrownShulkerBox.ID: []ID{1}, + block.RedShulkerBox.ID: []ID{1}, + block.OrangeConcrete.ID: []ID{1}, + block.WarpedNylium.ID: []ID{1}, + block.Andesite.ID: []ID{1}, + block.CyanBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.RedstoneOre.ID: []ID{1}, + block.DarkOakStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.RedConcretePowder.ID: []ID{1}, + block.StoneStairs.ID: []ID{25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 24, 24, 30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 36, 36, 26, 26, 38, 38, 28, 28, 45, 45, 41, 41, 30, 30, 43, 43, 32, 32, 46, 46, 27, 27, 35, 35, 29, 29, 37, 37, 47, 47, 31, 31, 40, 40, 33, 33, 42, 42}, + block.BlackBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.DarkOakTrapdoor.ID: []ID{54, 54, 54, 54, 89, 89, 89, 89, 54, 54, 54, 54, 88, 88, 88, 88, 57, 57, 57, 57, 89, 89, 89, 89, 57, 57, 57, 57, 88, 88, 88, 88, 56, 56, 56, 56, 89, 89, 89, 89, 56, 56, 56, 56, 88, 88, 88, 88, 55, 55, 55, 55, 89, 89, 89, 89, 55, 55, 55, 55, 88, 88, 88, 88}, + block.Beacon.ID: []ID{1}, + block.BirchDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.Shroomlight.ID: []ID{1}, + block.IronDoor.ID: []ID{55, 55, 54, 54, 56, 56, 54, 54, 55, 55, 54, 54, 56, 56, 54, 54, 56, 56, 57, 57, 55, 55, 57, 57, 56, 56, 57, 57, 55, 55, 57, 57, 54, 54, 56, 56, 57, 57, 56, 56, 54, 54, 56, 56, 57, 57, 56, 56, 57, 57, 55, 55, 54, 54, 55, 55, 57, 57, 55, 55, 54, 54, 55, 55}, + block.RedTerracotta.ID: []ID{1}, + block.LightBlueBanner.ID: []ID{0}, + block.DeadFireCoral.ID: []ID{0}, + block.MossyCobblestoneSlab.ID: []ID{169, 169, 61, 61, 1, 1}, + block.LightGrayBed.ID: []ID{3, 2, 3, 2, 2, 3, 2, 3, 4, 5, 4, 5, 5, 4, 5, 4}, + block.StoneButton.ID: []ID{0}, + block.WhiteTerracotta.ID: []ID{1}, + block.DeadHornCoralFan.ID: []ID{0}, +} + +// Dimensions describes the bounding boxes of a shape ID. +var Dimensions = map[ID]Shape{ + 31: Shape{ + ID: 31, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 71: Shape{ + ID: 71, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.625, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + }, + }, + 72: Shape{ + ID: 72, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + }, + }, + 79: Shape{ + ID: 79, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + }, + }, + 201: Shape{ + ID: 201, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 206: Shape{ + ID: 206, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 242: Shape{ + ID: 242, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 0.875, Y: 0.375, Z: 0.875}, + }, + }, + }, + 18: Shape{ + ID: 18, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.25, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.375, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 0.625}, + }, + }, + }, + 56: Shape{ + ID: 56, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.8125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 158: Shape{ + ID: 158, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.5}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 1}, + }, + }, + }, + 208: Shape{ + ID: 208, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 28: Shape{ + ID: 28, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 167: Shape{ + ID: 167, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.25, Z: 0.375}, + Max: BoundingTriplet{X: 0.75, Y: 0.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.625, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.6875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.625}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.5, Z: 0.375}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 234: Shape{ + ID: 234, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 74: Shape{ + ID: 74, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.625}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + }, + }, + 213: Shape{ + ID: 213, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + }, + }, + 253: Shape{ + ID: 253, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0.1875, Z: 0.3125}, + Max: BoundingTriplet{X: 0.875, Y: 0.5625, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.5625, Z: 0.375}, + Max: BoundingTriplet{X: 0.875, Y: 0.75, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.75, Z: 0.375}, + Max: BoundingTriplet{X: 0.25, Y: 1, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 0.75, Y: 0.1875, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.1875, Z: 0.125}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.1875, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.5625, Z: 0.3125}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.5625, Z: 0.625}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.375}, + Max: BoundingTriplet{X: 0.875, Y: 1, Z: 0.625}, + }, + }, + }, + 164: Shape{ + ID: 164, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.625, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.6875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 0.25, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 52: Shape{ + ID: 52, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.875, Z: 1}, + }, + }, + }, + 59: Shape{ + ID: 59, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.25, Z: 1}, + }, + }, + }, + 69: Shape{ + ID: 69, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.625, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + }, + }, + 169: Shape{ + ID: 169, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 196: Shape{ + ID: 196, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + }, + }, + 249: Shape{ + ID: 249, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.875, Y: 1, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.4375, Z: 0.125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.4375, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 0.625, Y: 0.4375, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.625, Y: 0.4375, Z: 0.875}, + }, + }, + }, + 11: Shape{ + ID: 11, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.25, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 168: Shape{ + ID: 168, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.625, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.6875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.25, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 251: Shape{ + ID: 251, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.125, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.3125, Z: 0.125}, + Max: BoundingTriplet{X: 0.5625, Y: 0.6875, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.3125, Z: 0.75}, + Max: BoundingTriplet{X: 0.5625, Y: 0.6875, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.5625, Y: 0.375, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.5625, Y: 0.375, Z: 0.75}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 0.875}, + }, + }, + }, + 88: Shape{ + ID: 88, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 1}, + }, + }, + }, + 121: Shape{ + ID: 121, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.1875, Z: 0.4375}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.9375}, + }, + }, + }, + 124: Shape{ + ID: 124, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + }, + }, + 191: Shape{ + ID: 191, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 30: Shape{ + ID: 30, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 170: Shape{ + ID: 170, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.0625, Z: 1}, + }, + }, + }, + 254: Shape{ + ID: 254, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.875, Y: 0.75, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.1875, Z: 0.125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.5625, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.1875, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 0.5625, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.5625, Z: 0.125}, + Max: BoundingTriplet{X: 0.625, Y: 1, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.5625, Z: 0.75}, + Max: BoundingTriplet{X: 0.625, Y: 1, Z: 0.875}, + }, + }, + }, + 95: Shape{ + ID: 95, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.5625}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + }, + }, + 89: Shape{ + ID: 89, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.8125, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 115: Shape{ + ID: 115, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.6875, Y: 0.4375, Z: 0.375}, + Max: BoundingTriplet{X: 0.9375, Y: 0.75, Z: 0.625}, + }, + }, + }, + 153: Shape{ + ID: 153, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + }, + }, + 230: Shape{ + ID: 230, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 265: Shape{ + ID: 265, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.8125, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 0.9375, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + }, + }, + 35: Shape{ + ID: 35, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 0.5}, + }, + }, + }, + 195: Shape{ + ID: 195, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 210: Shape{ + ID: 210, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 270: Shape{ + ID: 270, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.40625, Y: 0, Z: 0.40625}, + Max: BoundingTriplet{X: 0.59375, Y: 1, Z: 0.59375}, + }, + }, + }, + 62: Shape{ + ID: 62, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 1}, + }, + }, + }, + 40: Shape{ + ID: 40, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 43: Shape{ + ID: 43, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + }, + }, + 45: Shape{ + ID: 45, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + }, + }, + 57: Shape{ + ID: 57, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.1875}, + }, + }, + }, + 91: Shape{ + ID: 91, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.4375}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.5625}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + }, + }, + 127: Shape{ + ID: 127, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 130: Shape{ + ID: 130, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 39: Shape{ + ID: 39, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 200: Shape{ + ID: 200, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 133: Shape{ + ID: 133, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 182: Shape{ + ID: 182, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 189: Shape{ + ID: 189, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + }, + }, + 215: Shape{ + ID: 215, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 217: Shape{ + ID: 217, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 131: Shape{ + ID: 131, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.3125}, + }, + }, + }, + 231: Shape{ + ID: 231, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 138: Shape{ + ID: 138, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 106: Shape{ + ID: 106, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.09375, Z: 0.9375}, + }, + }, + }, + 108: Shape{ + ID: 108, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.25}, + Max: BoundingTriplet{X: 1, Y: 0.25, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.25, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.875}, + Max: BoundingTriplet{X: 0.25, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.1875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 0.25, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.1875, Z: 0.75}, + Max: BoundingTriplet{X: 1, Y: 0.25, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.1875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.25, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 125: Shape{ + ID: 125, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 204: Shape{ + ID: 204, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 220: Shape{ + ID: 220, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 100: Shape{ + ID: 100, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + }, + }, + 101: Shape{ + ID: 101, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.4375}, + }, + }, + }, + 161: Shape{ + ID: 161, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.5, Y: 0.75, Z: 0.75}, + }, + }, + }, + 10: Shape{ + ID: 10, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.75, Z: 1}, + }, + }, + }, + 23: Shape{ + ID: 23, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.25, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.25, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.25, Z: 0.625}, + }, + }, + }, + 109: Shape{ + ID: 109, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 1}, + }, + }, + }, + 163: Shape{ + ID: 163, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.625, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 0.875, Y: 0.25, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.8125, Y: 0.3125, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.3125, Z: 0.375}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.625}, + }, + }, + }, + 165: Shape{ + ID: 165, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.625, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.6875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.25, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 0.5, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 190: Shape{ + ID: 190, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 260: Shape{ + ID: 260, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.8125, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 0.9375, Z: 0.8125}, + }, + }, + }, + 16: Shape{ + ID: 16, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.375, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 0.75}, + }, + }, + }, + 128: Shape{ + ID: 128, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.6875, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 173: Shape{ + ID: 173, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.375, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 0.625}, + }, + }, + }, + 193: Shape{ + ID: 193, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 103: Shape{ + ID: 103, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.5625}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + }, + }, + 55: Shape{ + ID: 55, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.1875, Y: 1, Z: 1}, + }, + }, + }, + 63: Shape{ + ID: 63, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.875, Z: 1}, + }, + }, + }, + 132: Shape{ + ID: 132, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.6875, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 267: Shape{ + ID: 267, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0.0625, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.5, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 0.625}, + }, + }, + }, + 1: Shape{ + ID: 1, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 92: Shape{ + ID: 92, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5625, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + }, + }, + 147: Shape{ + ID: 147, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.3125}, + }, + }, + }, + 154: Shape{ + ID: 154, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 264: Shape{ + ID: 264, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.8125, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 0.9375, Z: 1}, + }, + }, + }, + 26: Shape{ + ID: 26, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 123: Shape{ + ID: 123, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0.1875, Z: 0.25}, + Max: BoundingTriplet{X: 0.9375, Y: 0.75, Z: 0.75}, + }, + }, + }, + 144: Shape{ + ID: 144, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 157: Shape{ + ID: 157, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.5, Z: 0.75}, + }, + }, + }, + 209: Shape{ + ID: 209, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 114: Shape{ + ID: 114, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0.4375, Z: 0.375}, + Max: BoundingTriplet{X: 0.3125, Y: 0.75, Z: 0.625}, + }, + }, + }, + 192: Shape{ + ID: 192, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 155: Shape{ + ID: 155, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 0.5, Y: 1.5, Z: 0.5}, + }, + }, + }, + 146: Shape{ + ID: 146, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + }, + }, + 156: Shape{ + ID: 156, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.375, Z: 0.6875}, + }, + }, + }, + 172: Shape{ + ID: 172, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0.375, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 1}, + }, + }, + }, + 188: Shape{ + ID: 188, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 233: Shape{ + ID: 233, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 238: Shape{ + ID: 238, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.75, Y: 0.4375, Z: 0.75}, + }, + }, + }, + 262: Shape{ + ID: 262, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.8125, Z: 0.4375}, + Max: BoundingTriplet{X: 0.8125, Y: 0.9375, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + }, + }, + 135: Shape{ + ID: 135, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 99: Shape{ + ID: 99, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.4375}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.5625}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + }, + }, + 181: Shape{ + ID: 181, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + }, + }, + 227: Shape{ + ID: 227, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 49: Shape{ + ID: 49, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 1, Y: 0.875, Z: 0.9375}, + }, + }, + }, + 76: Shape{ + ID: 76, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.375}, + }, + }, + }, + 248: Shape{ + ID: 248, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.25, Y: 0.8125, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.4375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.875, Y: 0.8125, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.4375, Z: 0.625}, + Max: BoundingTriplet{X: 0.875, Y: 0.8125, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.125}, + Max: BoundingTriplet{X: 0.75, Y: 0.4375, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.4375, Z: 0.125}, + Max: BoundingTriplet{X: 0.75, Y: 1, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.4375, Z: 0.375}, + Max: BoundingTriplet{X: 0.875, Y: 0.8125, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.4375, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.8125, Z: 0.3125}, + Max: BoundingTriplet{X: 0.75, Y: 1, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.875, Y: 0.4375, Z: 0.625}, + }, + }, + }, + 261: Shape{ + ID: 261, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.5625, Y: 0.9375, Z: 1}, + }, + }, + }, + 58: Shape{ + ID: 58, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.125, Z: 1}, + }, + }, + }, + 75: Shape{ + ID: 75, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + }, + }, + 136: Shape{ + ID: 136, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.6875, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 70: Shape{ + ID: 70, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.625}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + }, + }, + 36: Shape{ + ID: 36, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 7: Shape{ + ID: 7, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.75, Y: 1, Z: 1}, + }, + }, + }, + 225: Shape{ + ID: 225, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 269: Shape{ + ID: 269, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.125, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.125, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.125, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.125, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 27: Shape{ + ID: 27, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + }, + }, + 64: Shape{ + ID: 64, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.9375, Z: 0.9375}, + }, + }, + }, + 140: Shape{ + ID: 140, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 21: Shape{ + ID: 21, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.75, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: -0.25, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 0.75, Z: 0.625}, + }, + }, + }, + 41: Shape{ + ID: 41, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 19: Shape{ + ID: 19, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.25, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.375, Z: 0.375}, + Max: BoundingTriplet{X: 1.25, Y: 0.625, Z: 0.625}, + }, + }, + }, + 77: Shape{ + ID: 77, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + }, + }, + 82: Shape{ + ID: 82, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 117: Shape{ + ID: 117, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0.3125, Z: 0.5625}, + Max: BoundingTriplet{X: 0.6875, Y: 0.75, Z: 0.9375}, + }, + }, + }, + 212: Shape{ + ID: 212, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 237: Shape{ + ID: 237, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 50: Shape{ + ID: 50, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.875, Z: 0.9375}, + }, + }, + }, + 171: Shape{ + ID: 171, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1, Z: 0.625}, + }, + }, + }, + 178: Shape{ + ID: 178, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 150: Shape{ + ID: 150, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 113: Shape{ + ID: 113, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0.4375, Z: 0.6875}, + Max: BoundingTriplet{X: 0.625, Y: 0.75, Z: 0.9375}, + }, + }, + }, + 203: Shape{ + ID: 203, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 3: Shape{ + ID: 3, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.1875, Y: 0.5625, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 0.1875}, + }, + }, + }, + 98: Shape{ + ID: 98, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + }, + }, + 129: Shape{ + ID: 129, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + }, + }, + 250: Shape{ + ID: 250, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0.3125, Z: 0.4375}, + Max: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.375, Z: 0}, + Max: BoundingTriplet{X: 0.25, Y: 0.625, Z: 0.4375}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.125, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.3125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.3125, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.4375}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.3125, Z: 0.8125}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.6875, Z: 0.4375}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0}, + Max: BoundingTriplet{X: 0.875, Y: 0.625, Z: 0.4375}, + }, + }, + }, + 53: Shape{ + ID: 53, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.9375, Z: 1}, + }, + }, + }, + 148: Shape{ + ID: 148, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 175: Shape{ + ID: 175, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 187: Shape{ + ID: 187, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 198: Shape{ + ID: 198, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + }, + }, + 122: Shape{ + ID: 122, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0.1875, Z: 0.25}, + Max: BoundingTriplet{X: 0.5625, Y: 0.75, Z: 0.75}, + }, + }, + }, + 83: Shape{ + ID: 83, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 166: Shape{ + ID: 166, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.625, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.6875, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.6875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.25, Z: 0.75}, + Max: BoundingTriplet{X: 0.625, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + }, + }, + 44: Shape{ + ID: 44, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 80: Shape{ + ID: 80, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + }, + }, + 151: Shape{ + ID: 151, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 258: Shape{ + ID: 258, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.75, Y: 1, Z: 1}, + }, + }, + }, + 47: Shape{ + ID: 47, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 111: Shape{ + ID: 111, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 1, Z: 0.9375}, + }, + }, + }, + 126: Shape{ + ID: 126, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 81: Shape{ + ID: 81, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 183: Shape{ + ID: 183, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 185: Shape{ + ID: 185, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 255: Shape{ + ID: 255, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.125, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.75}, + }, + }, + }, + 259: Shape{ + ID: 259, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.8125, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + }, + }, + 15: Shape{ + ID: 15, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: -0.25, Y: 0.375, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.375, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.625}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.625}, + }, + }, + }, + 149: Shape{ + ID: 149, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 235: Shape{ + ID: 235, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 247: Shape{ + ID: 247, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0.3125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.875, Y: 0.6875, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.375, Z: 0.5625}, + Max: BoundingTriplet{X: 0.25, Y: 0.625, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.125, Z: 0}, + Max: BoundingTriplet{X: 0.75, Y: 0.3125, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.3125, Z: 0}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.3125, Z: 0.5625}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.6875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.75, Y: 0.875, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.5625}, + Max: BoundingTriplet{X: 0.875, Y: 0.625, Z: 1}, + }, + }, + }, + 2: Shape{ + ID: 2, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.8125}, + Max: BoundingTriplet{X: 0.1875, Y: 0.5625, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0, Z: 0.8125}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 1}, + }, + }, + }, + 94: Shape{ + ID: 94, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.5625, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + }, + }, + 197: Shape{ + ID: 197, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + }, + }, + 222: Shape{ + ID: 222, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 38: Shape{ + ID: 38, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 68: Shape{ + ID: 68, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.375}, + }, + }, + }, + 194: Shape{ + ID: 194, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 199: Shape{ + ID: 199, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 207: Shape{ + ID: 207, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 240: Shape{ + ID: 240, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 0.375, Z: 0.625}, + }, + }, + }, + 29: Shape{ + ID: 29, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 0.5}, + }, + }, + }, + 51: Shape{ + ID: 51, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.9375, Y: 0.875, Z: 0.9375}, + }, + }, + }, + 205: Shape{ + ID: 205, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + }, + }, + 226: Shape{ + ID: 226, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 20: Shape{ + ID: 20, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.75, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 0.75, Z: 0.625}, + }, + }, + }, + 61: Shape{ + ID: 61, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + }, + }, + 174: Shape{ + ID: 174, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 228: Shape{ + ID: 228, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 12: Shape{ + ID: 12, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.375, Z: 0.25}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 1.25}, + }, + }, + }, + 243: Shape{ + ID: 243, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 0.875, Y: 0.4375, Z: 0.875}, + }, + }, + }, + 216: Shape{ + ID: 216, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 176: Shape{ + ID: 176, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 244: Shape{ + ID: 244, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0.3125, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.6875, Z: 0.6875}, + }, + }, + }, + 32: Shape{ + ID: 32, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 0.5, Y: 1, Z: 0.5}, + }, + }, + }, + 73: Shape{ + ID: 73, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + }, + }, + 229: Shape{ + ID: 229, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + }, + }, + 8: Shape{ + ID: 8, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.75}, + }, + }, + }, + 112: Shape{ + ID: 112, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0.4375, Z: 0.0625}, + Max: BoundingTriplet{X: 0.625, Y: 0.75, Z: 0.3125}, + }, + }, + }, + 179: Shape{ + ID: 179, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 268: Shape{ + ID: 268, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.4375, Z: 1}, + }, + }, + }, + 86: Shape{ + ID: 86, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.6875, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 78: Shape{ + ID: 78, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.625}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + }, + }, + 159: Shape{ + ID: 159, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.5}, + }, + }, + }, + 177: Shape{ + ID: 177, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 218: Shape{ + ID: 218, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 67: Shape{ + ID: 67, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.625, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + }, + }, + 118: Shape{ + ID: 118, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0.3125, Z: 0.3125}, + Max: BoundingTriplet{X: 0.4375, Y: 0.75, Z: 0.6875}, + }, + }, + }, + 160: Shape{ + ID: 160, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.5, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 1, Y: 0.75, Z: 0.75}, + }, + }, + }, + 180: Shape{ + ID: 180, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 202: Shape{ + ID: 202, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + }, + }, + 107: Shape{ + ID: 107, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.125, Z: 0.9375}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.125, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 0.875, Z: 0.5625}, + }, + }, + }, + 263: Shape{ + ID: 263, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 0.9375, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0.375, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.8125, Z: 0.6875}, + }, + }, + }, + 245: Shape{ + ID: 245, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.15625, Y: 0, Z: 0.15625}, + Max: BoundingTriplet{X: 0.34375, Y: 1, Z: 0.34375}, + }, + }, + }, + 120: Shape{ + ID: 120, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0.1875, Z: 0.0625}, + Max: BoundingTriplet{X: 0.75, Y: 0.75, Z: 0.5625}, + }, + }, + }, + 143: Shape{ + ID: 143, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 224: Shape{ + ID: 224, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 257: Shape{ + ID: 257, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.75}, + }, + }, + }, + 13: Shape{ + ID: 13, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.375, Z: 0.25}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 1}, + }, + }, + }, + 137: Shape{ + ID: 137, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + }, + }, + 184: Shape{ + ID: 184, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 214: Shape{ + ID: 214, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 241: Shape{ + ID: 241, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.375, Z: 0.8125}, + }, + }, + }, + 42: Shape{ + ID: 42, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 110: Shape{ + ID: 110, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.8125, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1, Z: 0.75}, + }, + }, + }, + 142: Shape{ + ID: 142, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 152: Shape{ + ID: 152, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 93: Shape{ + ID: 93, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.4375}, + }, + }, + }, + 85: Shape{ + ID: 85, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.5625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 104: Shape{ + ID: 104, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + }, + }, + 105: Shape{ + ID: 105, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + }, + }, + 186: Shape{ + ID: 186, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 46: Shape{ + ID: 46, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + }, + }, + 65: Shape{ + ID: 65, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.625}, + }, + }, + }, + 139: Shape{ + ID: 139, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 141: Shape{ + ID: 141, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + }, + }, + 162: Shape{ + ID: 162, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.125, Y: 0, Z: 0.125}, + Max: BoundingTriplet{X: 0.875, Y: 0.25, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.625, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.25, Z: 0.1875}, + Max: BoundingTriplet{X: 0.75, Y: 0.3125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.3125, Z: 0.25}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 0.75}, + }, + }, + }, + 211: Shape{ + ID: 211, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 54: Shape{ + ID: 54, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.8125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 60: Shape{ + ID: 60, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.375, Z: 1}, + }, + }, + }, + 266: Shape{ + ID: 266, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.6875, Y: 0.4375, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.4375, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 0.5625, Z: 0.625}, + }, + }, + }, + 37: Shape{ + ID: 37, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + }, + }, + 34: Shape{ + ID: 34, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 66: Shape{ + ID: 66, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0, Z: 0.625}, + Max: BoundingTriplet{X: 0.625, Y: 1.5, Z: 1}, + }, + }, + }, + 0: Shape{ + ID: 0, + Boxes: []BoundingBox{}, + }, + 102: Shape{ + ID: 102, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + }, + }, + 116: Shape{ + ID: 116, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.3125, Y: 0.3125, Z: 0.0625}, + Max: BoundingTriplet{X: 0.6875, Y: 0.75, Z: 0.4375}, + }, + }, + }, + 221: Shape{ + ID: 221, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + }, + }, + 236: Shape{ + ID: 236, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 246: Shape{ + ID: 246, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.875}, + Max: BoundingTriplet{X: 0.125, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.875, Z: 0.125}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.125, Y: 0.875, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.875, Z: 0.125}, + }, + { + Min: BoundingTriplet{X: 0.875, Y: 0, Z: 0.875}, + Max: BoundingTriplet{X: 1, Y: 0.875, Z: 1}, + }, + }, + }, + 22: Shape{ + ID: 22, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.25, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.25, Z: 0.375}, + Max: BoundingTriplet{X: 0.625, Y: 1, Z: 0.625}, + }, + }, + }, + 14: Shape{ + ID: 14, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.375, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 0.625, Z: 0.625}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.375, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.375}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.375, Z: 0.625}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0.625, Z: 0.375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.625}, + }, + }, + }, + 17: Shape{ + ID: 17, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.375, Y: 0.375, Z: -0.25}, + Max: BoundingTriplet{X: 0.625, Y: 0.625, Z: 0.75}, + }, + }, + }, + 24: Shape{ + ID: 24, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 84: Shape{ + ID: 84, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 239: Shape{ + ID: 239, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.4375, Z: 0.9375}, + }, + }, + }, + 9: Shape{ + ID: 9, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 97: Shape{ + ID: 97, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + }, + }, + 134: Shape{ + ID: 134, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0.75}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.75, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 1, Y: 1.5, Z: 0.6875}, + }, + }, + }, + 232: Shape{ + ID: 232, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 90: Shape{ + ID: 90, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 0.5625}, + }, + }, + }, + 33: Shape{ + ID: 33, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5, Y: 0.5, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + }, + }, + 145: Shape{ + ID: 145, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.3125}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.6875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.3125}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0, Z: 0.6875}, + Max: BoundingTriplet{X: 0.75, Y: 1.5, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.3125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.6875, Y: 1.5, Z: 0.25}, + }, + }, + }, + 223: Shape{ + ID: 223, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.8125, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 256: Shape{ + ID: 256, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 1}, + }, + }, + }, + 4: Shape{ + ID: 4, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 0.1875, Y: 0.5625, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.8125}, + Max: BoundingTriplet{X: 0.1875, Y: 0.5625, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.1875, Z: 0.8125}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 1}, + }, + }, + }, + 6: Shape{ + ID: 6, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0.25}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, + 96: Shape{ + ID: 96, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.4375, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 0.5625, Y: 1, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.5625, Y: 0, Z: 0.4375}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5625}, + }, + }, + }, + 5: Shape{ + ID: 5, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.5625, Z: 1}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 0.1875}, + }, + { + Min: BoundingTriplet{X: 0.8125, Y: 0, Z: 0.8125}, + Max: BoundingTriplet{X: 1, Y: 0.1875, Z: 1}, + }, + }, + }, + 48: Shape{ + ID: 48, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.0625, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.875, Z: 0.9375}, + }, + }, + }, + 87: Shape{ + ID: 87, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.8125, Y: 0, Z: 0.0625}, + Max: BoundingTriplet{X: 0.9375, Y: 0.5, Z: 0.9375}, + }, + }, + }, + 119: Shape{ + ID: 119, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0.5625, Y: 0.3125, Z: 0.3125}, + Max: BoundingTriplet{X: 0.9375, Y: 0.75, Z: 0.6875}, + }, + }, + }, + 219: Shape{ + ID: 219, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.1875, Z: 0.1875}, + Max: BoundingTriplet{X: 1, Y: 0.8125, Z: 0.8125}, + }, + { + Min: BoundingTriplet{X: 0.1875, Y: 0.8125, Z: 0.1875}, + Max: BoundingTriplet{X: 0.8125, Y: 1, Z: 0.8125}, + }, + }, + }, + 252: Shape{ + ID: 252, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0.375, Z: 0.125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.625, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.375, Z: 0.75}, + Max: BoundingTriplet{X: 0.8125, Y: 0.625, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.25, Y: 0.125, Z: 0.25}, + Max: BoundingTriplet{X: 1, Y: 0.875, Z: 0.75}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.3125, Z: 0.125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.375, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.3125, Z: 0.75}, + Max: BoundingTriplet{X: 0.8125, Y: 0.375, Z: 0.875}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.625, Z: 0.125}, + Max: BoundingTriplet{X: 0.8125, Y: 0.6875, Z: 0.25}, + }, + { + Min: BoundingTriplet{X: 0.4375, Y: 0.625, Z: 0.75}, + Max: BoundingTriplet{X: 0.8125, Y: 0.6875, Z: 0.875}, + }, + }, + }, + 25: Shape{ + ID: 25, + Boxes: []BoundingBox{ + { + Min: BoundingTriplet{X: 0, Y: 0, Z: 0}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 0.5}, + }, + { + Min: BoundingTriplet{X: 0, Y: 0.5, Z: 0.5}, + Max: BoundingTriplet{X: 1, Y: 1, Z: 1}, + }, + }, + }, +} diff --git a/data/blocks.go b/data/blocks.go deleted file mode 100644 index 2bf841b..0000000 --- a/data/blocks.go +++ /dev/null @@ -1,110053 +0,0 @@ -package data - -import ( - "encoding/json" - "math" -) - -var blockStates map[string]struct { - Properties map[string][]interface{} `json:"properties"` - States []struct { - ID int `json:"id"` - Default bool `json:"default"` - Properties map[string]interface{} `json:"properties"` - } `json:"states"` -} - -var ( - //BlockNameByID stores each block names for each state ID. - BlockNameByID []string - //BitsPerBlock is how many bits used in network protocol per block. - BitsPerBlock int -) - -func init() { - json.Unmarshal([]byte(blockStatesJSON), &blockStates) - BlockNameByID = make([]string, blockStatesLen) - for i, v := range blockStates { - for _, s := range v.States { - BlockNameByID[s.ID] = i - } - } - - BitsPerBlock = int(math.Ceil(math.Log2(blockStatesLen))) -} - -const blockStatesLen = 11336 + 1 - -// Generate with follow steps: -// java -cp minecraft_server.1.15.jar net.minecraft.data.Main --all -// {reports/blocks.json} -var blockStatesJSON = `{ - "minecraft:air": { - "states": [ - { - "id": 0, - "default": true - } - ] - }, - "minecraft:stone": { - "states": [ - { - "id": 1, - "default": true - } - ] - }, - "minecraft:granite": { - "states": [ - { - "id": 2, - "default": true - } - ] - }, - "minecraft:polished_granite": { - "states": [ - { - "id": 3, - "default": true - } - ] - }, - "minecraft:diorite": { - "states": [ - { - "id": 4, - "default": true - } - ] - }, - "minecraft:polished_diorite": { - "states": [ - { - "id": 5, - "default": true - } - ] - }, - "minecraft:andesite": { - "states": [ - { - "id": 6, - "default": true - } - ] - }, - "minecraft:polished_andesite": { - "states": [ - { - "id": 7, - "default": true - } - ] - }, - "minecraft:grass_block": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "snowy": "true" - }, - "id": 8 - }, - { - "properties": { - "snowy": "false" - }, - "id": 9, - "default": true - } - ] - }, - "minecraft:dirt": { - "states": [ - { - "id": 10, - "default": true - } - ] - }, - "minecraft:coarse_dirt": { - "states": [ - { - "id": 11, - "default": true - } - ] - }, - "minecraft:podzol": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "snowy": "true" - }, - "id": 12 - }, - { - "properties": { - "snowy": "false" - }, - "id": 13, - "default": true - } - ] - }, - "minecraft:cobblestone": { - "states": [ - { - "id": 14, - "default": true - } - ] - }, - "minecraft:oak_planks": { - "states": [ - { - "id": 15, - "default": true - } - ] - }, - "minecraft:spruce_planks": { - "states": [ - { - "id": 16, - "default": true - } - ] - }, - "minecraft:birch_planks": { - "states": [ - { - "id": 17, - "default": true - } - ] - }, - "minecraft:jungle_planks": { - "states": [ - { - "id": 18, - "default": true - } - ] - }, - "minecraft:acacia_planks": { - "states": [ - { - "id": 19, - "default": true - } - ] - }, - "minecraft:dark_oak_planks": { - "states": [ - { - "id": 20, - "default": true - } - ] - }, - "minecraft:oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 21, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 22 - } - ] - }, - "minecraft:spruce_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 23, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 24 - } - ] - }, - "minecraft:birch_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 25, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 26 - } - ] - }, - "minecraft:jungle_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 27, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 28 - } - ] - }, - "minecraft:acacia_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 29, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 30 - } - ] - }, - "minecraft:dark_oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 31, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 32 - } - ] - }, - "minecraft:bedrock": { - "states": [ - { - "id": 33, - "default": true - } - ] - }, - "minecraft:water": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "level": "0" - }, - "id": 34, - "default": true - }, - { - "properties": { - "level": "1" - }, - "id": 35 - }, - { - "properties": { - "level": "2" - }, - "id": 36 - }, - { - "properties": { - "level": "3" - }, - "id": 37 - }, - { - "properties": { - "level": "4" - }, - "id": 38 - }, - { - "properties": { - "level": "5" - }, - "id": 39 - }, - { - "properties": { - "level": "6" - }, - "id": 40 - }, - { - "properties": { - "level": "7" - }, - "id": 41 - }, - { - "properties": { - "level": "8" - }, - "id": 42 - }, - { - "properties": { - "level": "9" - }, - "id": 43 - }, - { - "properties": { - "level": "10" - }, - "id": 44 - }, - { - "properties": { - "level": "11" - }, - "id": 45 - }, - { - "properties": { - "level": "12" - }, - "id": 46 - }, - { - "properties": { - "level": "13" - }, - "id": 47 - }, - { - "properties": { - "level": "14" - }, - "id": 48 - }, - { - "properties": { - "level": "15" - }, - "id": 49 - } - ] - }, - "minecraft:lava": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "level": "0" - }, - "id": 50, - "default": true - }, - { - "properties": { - "level": "1" - }, - "id": 51 - }, - { - "properties": { - "level": "2" - }, - "id": 52 - }, - { - "properties": { - "level": "3" - }, - "id": 53 - }, - { - "properties": { - "level": "4" - }, - "id": 54 - }, - { - "properties": { - "level": "5" - }, - "id": 55 - }, - { - "properties": { - "level": "6" - }, - "id": 56 - }, - { - "properties": { - "level": "7" - }, - "id": 57 - }, - { - "properties": { - "level": "8" - }, - "id": 58 - }, - { - "properties": { - "level": "9" - }, - "id": 59 - }, - { - "properties": { - "level": "10" - }, - "id": 60 - }, - { - "properties": { - "level": "11" - }, - "id": 61 - }, - { - "properties": { - "level": "12" - }, - "id": 62 - }, - { - "properties": { - "level": "13" - }, - "id": 63 - }, - { - "properties": { - "level": "14" - }, - "id": 64 - }, - { - "properties": { - "level": "15" - }, - "id": 65 - } - ] - }, - "minecraft:sand": { - "states": [ - { - "id": 66, - "default": true - } - ] - }, - "minecraft:red_sand": { - "states": [ - { - "id": 67, - "default": true - } - ] - }, - "minecraft:gravel": { - "states": [ - { - "id": 68, - "default": true - } - ] - }, - "minecraft:gold_ore": { - "states": [ - { - "id": 69, - "default": true - } - ] - }, - "minecraft:iron_ore": { - "states": [ - { - "id": 70, - "default": true - } - ] - }, - "minecraft:coal_ore": { - "states": [ - { - "id": 71, - "default": true - } - ] - }, - "minecraft:oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 72 - }, - { - "properties": { - "axis": "y" - }, - "id": 73, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 74 - } - ] - }, - "minecraft:spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 75 - }, - { - "properties": { - "axis": "y" - }, - "id": 76, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 77 - } - ] - }, - "minecraft:birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 78 - }, - { - "properties": { - "axis": "y" - }, - "id": 79, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 80 - } - ] - }, - "minecraft:jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 81 - }, - { - "properties": { - "axis": "y" - }, - "id": 82, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 83 - } - ] - }, - "minecraft:acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 84 - }, - { - "properties": { - "axis": "y" - }, - "id": 85, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 86 - } - ] - }, - "minecraft:dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 87 - }, - { - "properties": { - "axis": "y" - }, - "id": 88, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 89 - } - ] - }, - "minecraft:stripped_spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 90 - }, - { - "properties": { - "axis": "y" - }, - "id": 91, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 92 - } - ] - }, - "minecraft:stripped_birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 93 - }, - { - "properties": { - "axis": "y" - }, - "id": 94, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 95 - } - ] - }, - "minecraft:stripped_jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 96 - }, - { - "properties": { - "axis": "y" - }, - "id": 97, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 98 - } - ] - }, - "minecraft:stripped_acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 99 - }, - { - "properties": { - "axis": "y" - }, - "id": 100, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 101 - } - ] - }, - "minecraft:stripped_dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 102 - }, - { - "properties": { - "axis": "y" - }, - "id": 103, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 104 - } - ] - }, - "minecraft:stripped_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 105 - }, - { - "properties": { - "axis": "y" - }, - "id": 106, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 107 - } - ] - }, - "minecraft:oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 108 - }, - { - "properties": { - "axis": "y" - }, - "id": 109, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 110 - } - ] - }, - "minecraft:spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 111 - }, - { - "properties": { - "axis": "y" - }, - "id": 112, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 113 - } - ] - }, - "minecraft:birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 114 - }, - { - "properties": { - "axis": "y" - }, - "id": 115, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 116 - } - ] - }, - "minecraft:jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 117 - }, - { - "properties": { - "axis": "y" - }, - "id": 118, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 119 - } - ] - }, - "minecraft:acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 120 - }, - { - "properties": { - "axis": "y" - }, - "id": 121, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 122 - } - ] - }, - "minecraft:dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 123 - }, - { - "properties": { - "axis": "y" - }, - "id": 124, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 125 - } - ] - }, - "minecraft:stripped_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 126 - }, - { - "properties": { - "axis": "y" - }, - "id": 127, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 128 - } - ] - }, - "minecraft:stripped_spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 129 - }, - { - "properties": { - "axis": "y" - }, - "id": 130, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 131 - } - ] - }, - "minecraft:stripped_birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 132 - }, - { - "properties": { - "axis": "y" - }, - "id": 133, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 134 - } - ] - }, - "minecraft:stripped_jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 135 - }, - { - "properties": { - "axis": "y" - }, - "id": 136, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 137 - } - ] - }, - "minecraft:stripped_acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 138 - }, - { - "properties": { - "axis": "y" - }, - "id": 139, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 140 - } - ] - }, - "minecraft:stripped_dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 141 - }, - { - "properties": { - "axis": "y" - }, - "id": 142, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 143 - } - ] - }, - "minecraft:oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 144 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 145 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 146 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 147 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 148 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 149 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 150 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 151 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 152 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 153 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 154 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 155 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 156 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 157, - "default": true - } - ] - }, - "minecraft:spruce_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 158 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 159 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 160 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 161 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 162 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 163 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 164 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 165 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 166 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 167 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 168 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 169 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 170 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 171, - "default": true - } - ] - }, - "minecraft:birch_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 172 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 173 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 174 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 175 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 176 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 177 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 178 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 179 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 180 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 181 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 182 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 183 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 184 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 185, - "default": true - } - ] - }, - "minecraft:jungle_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 186 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 187 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 188 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 189 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 190 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 191 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 192 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 193 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 194 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 195 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 196 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 197 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 198 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 199, - "default": true - } - ] - }, - "minecraft:acacia_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 200 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 201 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 202 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 203 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 204 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 205 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 206 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 207 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 208 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 209 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 210 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 211 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 212 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 213, - "default": true - } - ] - }, - "minecraft:dark_oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 214 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 215 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 216 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 217 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 218 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 219 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 220 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 221 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 222 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 223 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 224 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 225 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 226 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 227, - "default": true - } - ] - }, - "minecraft:sponge": { - "states": [ - { - "id": 228, - "default": true - } - ] - }, - "minecraft:wet_sponge": { - "states": [ - { - "id": 229, - "default": true - } - ] - }, - "minecraft:glass": { - "states": [ - { - "id": 230, - "default": true - } - ] - }, - "minecraft:lapis_ore": { - "states": [ - { - "id": 231, - "default": true - } - ] - }, - "minecraft:lapis_block": { - "states": [ - { - "id": 232, - "default": true - } - ] - }, - "minecraft:dispenser": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "triggered": "true" - }, - "id": 233 - }, - { - "properties": { - "facing": "north", - "triggered": "false" - }, - "id": 234, - "default": true - }, - { - "properties": { - "facing": "east", - "triggered": "true" - }, - "id": 235 - }, - { - "properties": { - "facing": "east", - "triggered": "false" - }, - "id": 236 - }, - { - "properties": { - "facing": "south", - "triggered": "true" - }, - "id": 237 - }, - { - "properties": { - "facing": "south", - "triggered": "false" - }, - "id": 238 - }, - { - "properties": { - "facing": "west", - "triggered": "true" - }, - "id": 239 - }, - { - "properties": { - "facing": "west", - "triggered": "false" - }, - "id": 240 - }, - { - "properties": { - "facing": "up", - "triggered": "true" - }, - "id": 241 - }, - { - "properties": { - "facing": "up", - "triggered": "false" - }, - "id": 242 - }, - { - "properties": { - "facing": "down", - "triggered": "true" - }, - "id": 243 - }, - { - "properties": { - "facing": "down", - "triggered": "false" - }, - "id": 244 - } - ] - }, - "minecraft:sandstone": { - "states": [ - { - "id": 245, - "default": true - } - ] - }, - "minecraft:chiseled_sandstone": { - "states": [ - { - "id": 246, - "default": true - } - ] - }, - "minecraft:cut_sandstone": { - "states": [ - { - "id": 247, - "default": true - } - ] - }, - "minecraft:note_block": { - "properties": { - "instrument": [ - "harp", - "basedrum", - "snare", - "hat", - "bass", - "flute", - "bell", - "guitar", - "chime", - "xylophone", - "iron_xylophone", - "cow_bell", - "didgeridoo", - "bit", - "banjo", - "pling" - ], - "note": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "instrument": "harp", - "note": "0", - "powered": "true" - }, - "id": 248 - }, - { - "properties": { - "instrument": "harp", - "note": "0", - "powered": "false" - }, - "id": 249, - "default": true - }, - { - "properties": { - "instrument": "harp", - "note": "1", - "powered": "true" - }, - "id": 250 - }, - { - "properties": { - "instrument": "harp", - "note": "1", - "powered": "false" - }, - "id": 251 - }, - { - "properties": { - "instrument": "harp", - "note": "2", - "powered": "true" - }, - "id": 252 - }, - { - "properties": { - "instrument": "harp", - "note": "2", - "powered": "false" - }, - "id": 253 - }, - { - "properties": { - "instrument": "harp", - "note": "3", - "powered": "true" - }, - "id": 254 - }, - { - "properties": { - "instrument": "harp", - "note": "3", - "powered": "false" - }, - "id": 255 - }, - { - "properties": { - "instrument": "harp", - "note": "4", - "powered": "true" - }, - "id": 256 - }, - { - "properties": { - "instrument": "harp", - "note": "4", - "powered": "false" - }, - "id": 257 - }, - { - "properties": { - "instrument": "harp", - "note": "5", - "powered": "true" - }, - "id": 258 - }, - { - "properties": { - "instrument": "harp", - "note": "5", - "powered": "false" - }, - "id": 259 - }, - { - "properties": { - "instrument": "harp", - "note": "6", - "powered": "true" - }, - "id": 260 - }, - { - "properties": { - "instrument": "harp", - "note": "6", - "powered": "false" - }, - "id": 261 - }, - { - "properties": { - "instrument": "harp", - "note": "7", - "powered": "true" - }, - "id": 262 - }, - { - "properties": { - "instrument": "harp", - "note": "7", - "powered": "false" - }, - "id": 263 - }, - { - "properties": { - "instrument": "harp", - "note": "8", - "powered": "true" - }, - "id": 264 - }, - { - "properties": { - "instrument": "harp", - "note": "8", - "powered": "false" - }, - "id": 265 - }, - { - "properties": { - "instrument": "harp", - "note": "9", - "powered": "true" - }, - "id": 266 - }, - { - "properties": { - "instrument": "harp", - "note": "9", - "powered": "false" - }, - "id": 267 - }, - { - "properties": { - "instrument": "harp", - "note": "10", - "powered": "true" - }, - "id": 268 - }, - { - "properties": { - "instrument": "harp", - "note": "10", - "powered": "false" - }, - "id": 269 - }, - { - "properties": { - "instrument": "harp", - "note": "11", - "powered": "true" - }, - "id": 270 - }, - { - "properties": { - "instrument": "harp", - "note": "11", - "powered": "false" - }, - "id": 271 - }, - { - "properties": { - "instrument": "harp", - "note": "12", - "powered": "true" - }, - "id": 272 - }, - { - "properties": { - "instrument": "harp", - "note": "12", - "powered": "false" - }, - "id": 273 - }, - { - "properties": { - "instrument": "harp", - "note": "13", - "powered": "true" - }, - "id": 274 - }, - { - "properties": { - "instrument": "harp", - "note": "13", - "powered": "false" - }, - "id": 275 - }, - { - "properties": { - "instrument": "harp", - "note": "14", - "powered": "true" - }, - "id": 276 - }, - { - "properties": { - "instrument": "harp", - "note": "14", - "powered": "false" - }, - "id": 277 - }, - { - "properties": { - "instrument": "harp", - "note": "15", - "powered": "true" - }, - "id": 278 - }, - { - "properties": { - "instrument": "harp", - "note": "15", - "powered": "false" - }, - "id": 279 - }, - { - "properties": { - "instrument": "harp", - "note": "16", - "powered": "true" - }, - "id": 280 - }, - { - "properties": { - "instrument": "harp", - "note": "16", - "powered": "false" - }, - "id": 281 - }, - { - "properties": { - "instrument": "harp", - "note": "17", - "powered": "true" - }, - "id": 282 - }, - { - "properties": { - "instrument": "harp", - "note": "17", - "powered": "false" - }, - "id": 283 - }, - { - "properties": { - "instrument": "harp", - "note": "18", - "powered": "true" - }, - "id": 284 - }, - { - "properties": { - "instrument": "harp", - "note": "18", - "powered": "false" - }, - "id": 285 - }, - { - "properties": { - "instrument": "harp", - "note": "19", - "powered": "true" - }, - "id": 286 - }, - { - "properties": { - "instrument": "harp", - "note": "19", - "powered": "false" - }, - "id": 287 - }, - { - "properties": { - "instrument": "harp", - "note": "20", - "powered": "true" - }, - "id": 288 - }, - { - "properties": { - "instrument": "harp", - "note": "20", - "powered": "false" - }, - "id": 289 - }, - { - "properties": { - "instrument": "harp", - "note": "21", - "powered": "true" - }, - "id": 290 - }, - { - "properties": { - "instrument": "harp", - "note": "21", - "powered": "false" - }, - "id": 291 - }, - { - "properties": { - "instrument": "harp", - "note": "22", - "powered": "true" - }, - "id": 292 - }, - { - "properties": { - "instrument": "harp", - "note": "22", - "powered": "false" - }, - "id": 293 - }, - { - "properties": { - "instrument": "harp", - "note": "23", - "powered": "true" - }, - "id": 294 - }, - { - "properties": { - "instrument": "harp", - "note": "23", - "powered": "false" - }, - "id": 295 - }, - { - "properties": { - "instrument": "harp", - "note": "24", - "powered": "true" - }, - "id": 296 - }, - { - "properties": { - "instrument": "harp", - "note": "24", - "powered": "false" - }, - "id": 297 - }, - { - "properties": { - "instrument": "basedrum", - "note": "0", - "powered": "true" - }, - "id": 298 - }, - { - "properties": { - "instrument": "basedrum", - "note": "0", - "powered": "false" - }, - "id": 299 - }, - { - "properties": { - "instrument": "basedrum", - "note": "1", - "powered": "true" - }, - "id": 300 - }, - { - "properties": { - "instrument": "basedrum", - "note": "1", - "powered": "false" - }, - "id": 301 - }, - { - "properties": { - "instrument": "basedrum", - "note": "2", - "powered": "true" - }, - "id": 302 - }, - { - "properties": { - "instrument": "basedrum", - "note": "2", - "powered": "false" - }, - "id": 303 - }, - { - "properties": { - "instrument": "basedrum", - "note": "3", - "powered": "true" - }, - "id": 304 - }, - { - "properties": { - "instrument": "basedrum", - "note": "3", - "powered": "false" - }, - "id": 305 - }, - { - "properties": { - "instrument": "basedrum", - "note": "4", - "powered": "true" - }, - "id": 306 - }, - { - "properties": { - "instrument": "basedrum", - "note": "4", - "powered": "false" - }, - "id": 307 - }, - { - "properties": { - "instrument": "basedrum", - "note": "5", - "powered": "true" - }, - "id": 308 - }, - { - "properties": { - "instrument": "basedrum", - "note": "5", - "powered": "false" - }, - "id": 309 - }, - { - "properties": { - "instrument": "basedrum", - "note": "6", - "powered": "true" - }, - "id": 310 - }, - { - "properties": { - "instrument": "basedrum", - "note": "6", - "powered": "false" - }, - "id": 311 - }, - { - "properties": { - "instrument": "basedrum", - "note": "7", - "powered": "true" - }, - "id": 312 - }, - { - "properties": { - "instrument": "basedrum", - "note": "7", - "powered": "false" - }, - "id": 313 - }, - { - "properties": { - "instrument": "basedrum", - "note": "8", - "powered": "true" - }, - "id": 314 - }, - { - "properties": { - "instrument": "basedrum", - "note": "8", - "powered": "false" - }, - "id": 315 - }, - { - "properties": { - "instrument": "basedrum", - "note": "9", - "powered": "true" - }, - "id": 316 - }, - { - "properties": { - "instrument": "basedrum", - "note": "9", - "powered": "false" - }, - "id": 317 - }, - { - "properties": { - "instrument": "basedrum", - "note": "10", - "powered": "true" - }, - "id": 318 - }, - { - "properties": { - "instrument": "basedrum", - "note": "10", - "powered": "false" - }, - "id": 319 - }, - { - "properties": { - "instrument": "basedrum", - "note": "11", - "powered": "true" - }, - "id": 320 - }, - { - "properties": { - "instrument": "basedrum", - "note": "11", - "powered": "false" - }, - "id": 321 - }, - { - "properties": { - "instrument": "basedrum", - "note": "12", - "powered": "true" - }, - "id": 322 - }, - { - "properties": { - "instrument": "basedrum", - "note": "12", - "powered": "false" - }, - "id": 323 - }, - { - "properties": { - "instrument": "basedrum", - "note": "13", - "powered": "true" - }, - "id": 324 - }, - { - "properties": { - "instrument": "basedrum", - "note": "13", - "powered": "false" - }, - "id": 325 - }, - { - "properties": { - "instrument": "basedrum", - "note": "14", - "powered": "true" - }, - "id": 326 - }, - { - "properties": { - "instrument": "basedrum", - "note": "14", - "powered": "false" - }, - "id": 327 - }, - { - "properties": { - "instrument": "basedrum", - "note": "15", - "powered": "true" - }, - "id": 328 - }, - { - "properties": { - "instrument": "basedrum", - "note": "15", - "powered": "false" - }, - "id": 329 - }, - { - "properties": { - "instrument": "basedrum", - "note": "16", - "powered": "true" - }, - "id": 330 - }, - { - "properties": { - "instrument": "basedrum", - "note": "16", - "powered": "false" - }, - "id": 331 - }, - { - "properties": { - "instrument": "basedrum", - "note": "17", - "powered": "true" - }, - "id": 332 - }, - { - "properties": { - "instrument": "basedrum", - "note": "17", - "powered": "false" - }, - "id": 333 - }, - { - "properties": { - "instrument": "basedrum", - "note": "18", - "powered": "true" - }, - "id": 334 - }, - { - "properties": { - "instrument": "basedrum", - "note": "18", - "powered": "false" - }, - "id": 335 - }, - { - "properties": { - "instrument": "basedrum", - "note": "19", - "powered": "true" - }, - "id": 336 - }, - { - "properties": { - "instrument": "basedrum", - "note": "19", - "powered": "false" - }, - "id": 337 - }, - { - "properties": { - "instrument": "basedrum", - "note": "20", - "powered": "true" - }, - "id": 338 - }, - { - "properties": { - "instrument": "basedrum", - "note": "20", - "powered": "false" - }, - "id": 339 - }, - { - "properties": { - "instrument": "basedrum", - "note": "21", - "powered": "true" - }, - "id": 340 - }, - { - "properties": { - "instrument": "basedrum", - "note": "21", - "powered": "false" - }, - "id": 341 - }, - { - "properties": { - "instrument": "basedrum", - "note": "22", - "powered": "true" - }, - "id": 342 - }, - { - "properties": { - "instrument": "basedrum", - "note": "22", - "powered": "false" - }, - "id": 343 - }, - { - "properties": { - "instrument": "basedrum", - "note": "23", - "powered": "true" - }, - "id": 344 - }, - { - "properties": { - "instrument": "basedrum", - "note": "23", - "powered": "false" - }, - "id": 345 - }, - { - "properties": { - "instrument": "basedrum", - "note": "24", - "powered": "true" - }, - "id": 346 - }, - { - "properties": { - "instrument": "basedrum", - "note": "24", - "powered": "false" - }, - "id": 347 - }, - { - "properties": { - "instrument": "snare", - "note": "0", - "powered": "true" - }, - "id": 348 - }, - { - "properties": { - "instrument": "snare", - "note": "0", - "powered": "false" - }, - "id": 349 - }, - { - "properties": { - "instrument": "snare", - "note": "1", - "powered": "true" - }, - "id": 350 - }, - { - "properties": { - "instrument": "snare", - "note": "1", - "powered": "false" - }, - "id": 351 - }, - { - "properties": { - "instrument": "snare", - "note": "2", - "powered": "true" - }, - "id": 352 - }, - { - "properties": { - "instrument": "snare", - "note": "2", - "powered": "false" - }, - "id": 353 - }, - { - "properties": { - "instrument": "snare", - "note": "3", - "powered": "true" - }, - "id": 354 - }, - { - "properties": { - "instrument": "snare", - "note": "3", - "powered": "false" - }, - "id": 355 - }, - { - "properties": { - "instrument": "snare", - "note": "4", - "powered": "true" - }, - "id": 356 - }, - { - "properties": { - "instrument": "snare", - "note": "4", - "powered": "false" - }, - "id": 357 - }, - { - "properties": { - "instrument": "snare", - "note": "5", - "powered": "true" - }, - "id": 358 - }, - { - "properties": { - "instrument": "snare", - "note": "5", - "powered": "false" - }, - "id": 359 - }, - { - "properties": { - "instrument": "snare", - "note": "6", - "powered": "true" - }, - "id": 360 - }, - { - "properties": { - "instrument": "snare", - "note": "6", - "powered": "false" - }, - "id": 361 - }, - { - "properties": { - "instrument": "snare", - "note": "7", - "powered": "true" - }, - "id": 362 - }, - { - "properties": { - "instrument": "snare", - "note": "7", - "powered": "false" - }, - "id": 363 - }, - { - "properties": { - "instrument": "snare", - "note": "8", - "powered": "true" - }, - "id": 364 - }, - { - "properties": { - "instrument": "snare", - "note": "8", - "powered": "false" - }, - "id": 365 - }, - { - "properties": { - "instrument": "snare", - "note": "9", - "powered": "true" - }, - "id": 366 - }, - { - "properties": { - "instrument": "snare", - "note": "9", - "powered": "false" - }, - "id": 367 - }, - { - "properties": { - "instrument": "snare", - "note": "10", - "powered": "true" - }, - "id": 368 - }, - { - "properties": { - "instrument": "snare", - "note": "10", - "powered": "false" - }, - "id": 369 - }, - { - "properties": { - "instrument": "snare", - "note": "11", - "powered": "true" - }, - "id": 370 - }, - { - "properties": { - "instrument": "snare", - "note": "11", - "powered": "false" - }, - "id": 371 - }, - { - "properties": { - "instrument": "snare", - "note": "12", - "powered": "true" - }, - "id": 372 - }, - { - "properties": { - "instrument": "snare", - "note": "12", - "powered": "false" - }, - "id": 373 - }, - { - "properties": { - "instrument": "snare", - "note": "13", - "powered": "true" - }, - "id": 374 - }, - { - "properties": { - "instrument": "snare", - "note": "13", - "powered": "false" - }, - "id": 375 - }, - { - "properties": { - "instrument": "snare", - "note": "14", - "powered": "true" - }, - "id": 376 - }, - { - "properties": { - "instrument": "snare", - "note": "14", - "powered": "false" - }, - "id": 377 - }, - { - "properties": { - "instrument": "snare", - "note": "15", - "powered": "true" - }, - "id": 378 - }, - { - "properties": { - "instrument": "snare", - "note": "15", - "powered": "false" - }, - "id": 379 - }, - { - "properties": { - "instrument": "snare", - "note": "16", - "powered": "true" - }, - "id": 380 - }, - { - "properties": { - "instrument": "snare", - "note": "16", - "powered": "false" - }, - "id": 381 - }, - { - "properties": { - "instrument": "snare", - "note": "17", - "powered": "true" - }, - "id": 382 - }, - { - "properties": { - "instrument": "snare", - "note": "17", - "powered": "false" - }, - "id": 383 - }, - { - "properties": { - "instrument": "snare", - "note": "18", - "powered": "true" - }, - "id": 384 - }, - { - "properties": { - "instrument": "snare", - "note": "18", - "powered": "false" - }, - "id": 385 - }, - { - "properties": { - "instrument": "snare", - "note": "19", - "powered": "true" - }, - "id": 386 - }, - { - "properties": { - "instrument": "snare", - "note": "19", - "powered": "false" - }, - "id": 387 - }, - { - "properties": { - "instrument": "snare", - "note": "20", - "powered": "true" - }, - "id": 388 - }, - { - "properties": { - "instrument": "snare", - "note": "20", - "powered": "false" - }, - "id": 389 - }, - { - "properties": { - "instrument": "snare", - "note": "21", - "powered": "true" - }, - "id": 390 - }, - { - "properties": { - "instrument": "snare", - "note": "21", - "powered": "false" - }, - "id": 391 - }, - { - "properties": { - "instrument": "snare", - "note": "22", - "powered": "true" - }, - "id": 392 - }, - { - "properties": { - "instrument": "snare", - "note": "22", - "powered": "false" - }, - "id": 393 - }, - { - "properties": { - "instrument": "snare", - "note": "23", - "powered": "true" - }, - "id": 394 - }, - { - "properties": { - "instrument": "snare", - "note": "23", - "powered": "false" - }, - "id": 395 - }, - { - "properties": { - "instrument": "snare", - "note": "24", - "powered": "true" - }, - "id": 396 - }, - { - "properties": { - "instrument": "snare", - "note": "24", - "powered": "false" - }, - "id": 397 - }, - { - "properties": { - "instrument": "hat", - "note": "0", - "powered": "true" - }, - "id": 398 - }, - { - "properties": { - "instrument": "hat", - "note": "0", - "powered": "false" - }, - "id": 399 - }, - { - "properties": { - "instrument": "hat", - "note": "1", - "powered": "true" - }, - "id": 400 - }, - { - "properties": { - "instrument": "hat", - "note": "1", - "powered": "false" - }, - "id": 401 - }, - { - "properties": { - "instrument": "hat", - "note": "2", - "powered": "true" - }, - "id": 402 - }, - { - "properties": { - "instrument": "hat", - "note": "2", - "powered": "false" - }, - "id": 403 - }, - { - "properties": { - "instrument": "hat", - "note": "3", - "powered": "true" - }, - "id": 404 - }, - { - "properties": { - "instrument": "hat", - "note": "3", - "powered": "false" - }, - "id": 405 - }, - { - "properties": { - "instrument": "hat", - "note": "4", - "powered": "true" - }, - "id": 406 - }, - { - "properties": { - "instrument": "hat", - "note": "4", - "powered": "false" - }, - "id": 407 - }, - { - "properties": { - "instrument": "hat", - "note": "5", - "powered": "true" - }, - "id": 408 - }, - { - "properties": { - "instrument": "hat", - "note": "5", - "powered": "false" - }, - "id": 409 - }, - { - "properties": { - "instrument": "hat", - "note": "6", - "powered": "true" - }, - "id": 410 - }, - { - "properties": { - "instrument": "hat", - "note": "6", - "powered": "false" - }, - "id": 411 - }, - { - "properties": { - "instrument": "hat", - "note": "7", - "powered": "true" - }, - "id": 412 - }, - { - "properties": { - "instrument": "hat", - "note": "7", - "powered": "false" - }, - "id": 413 - }, - { - "properties": { - "instrument": "hat", - "note": "8", - "powered": "true" - }, - "id": 414 - }, - { - "properties": { - "instrument": "hat", - "note": "8", - "powered": "false" - }, - "id": 415 - }, - { - "properties": { - "instrument": "hat", - "note": "9", - "powered": "true" - }, - "id": 416 - }, - { - "properties": { - "instrument": "hat", - "note": "9", - "powered": "false" - }, - "id": 417 - }, - { - "properties": { - "instrument": "hat", - "note": "10", - "powered": "true" - }, - "id": 418 - }, - { - "properties": { - "instrument": "hat", - "note": "10", - "powered": "false" - }, - "id": 419 - }, - { - "properties": { - "instrument": "hat", - "note": "11", - "powered": "true" - }, - "id": 420 - }, - { - "properties": { - "instrument": "hat", - "note": "11", - "powered": "false" - }, - "id": 421 - }, - { - "properties": { - "instrument": "hat", - "note": "12", - "powered": "true" - }, - "id": 422 - }, - { - "properties": { - "instrument": "hat", - "note": "12", - "powered": "false" - }, - "id": 423 - }, - { - "properties": { - "instrument": "hat", - "note": "13", - "powered": "true" - }, - "id": 424 - }, - { - "properties": { - "instrument": "hat", - "note": "13", - "powered": "false" - }, - "id": 425 - }, - { - "properties": { - "instrument": "hat", - "note": "14", - "powered": "true" - }, - "id": 426 - }, - { - "properties": { - "instrument": "hat", - "note": "14", - "powered": "false" - }, - "id": 427 - }, - { - "properties": { - "instrument": "hat", - "note": "15", - "powered": "true" - }, - "id": 428 - }, - { - "properties": { - "instrument": "hat", - "note": "15", - "powered": "false" - }, - "id": 429 - }, - { - "properties": { - "instrument": "hat", - "note": "16", - "powered": "true" - }, - "id": 430 - }, - { - "properties": { - "instrument": "hat", - "note": "16", - "powered": "false" - }, - "id": 431 - }, - { - "properties": { - "instrument": "hat", - "note": "17", - "powered": "true" - }, - "id": 432 - }, - { - "properties": { - "instrument": "hat", - "note": "17", - "powered": "false" - }, - "id": 433 - }, - { - "properties": { - "instrument": "hat", - "note": "18", - "powered": "true" - }, - "id": 434 - }, - { - "properties": { - "instrument": "hat", - "note": "18", - "powered": "false" - }, - "id": 435 - }, - { - "properties": { - "instrument": "hat", - "note": "19", - "powered": "true" - }, - "id": 436 - }, - { - "properties": { - "instrument": "hat", - "note": "19", - "powered": "false" - }, - "id": 437 - }, - { - "properties": { - "instrument": "hat", - "note": "20", - "powered": "true" - }, - "id": 438 - }, - { - "properties": { - "instrument": "hat", - "note": "20", - "powered": "false" - }, - "id": 439 - }, - { - "properties": { - "instrument": "hat", - "note": "21", - "powered": "true" - }, - "id": 440 - }, - { - "properties": { - "instrument": "hat", - "note": "21", - "powered": "false" - }, - "id": 441 - }, - { - "properties": { - "instrument": "hat", - "note": "22", - "powered": "true" - }, - "id": 442 - }, - { - "properties": { - "instrument": "hat", - "note": "22", - "powered": "false" - }, - "id": 443 - }, - { - "properties": { - "instrument": "hat", - "note": "23", - "powered": "true" - }, - "id": 444 - }, - { - "properties": { - "instrument": "hat", - "note": "23", - "powered": "false" - }, - "id": 445 - }, - { - "properties": { - "instrument": "hat", - "note": "24", - "powered": "true" - }, - "id": 446 - }, - { - "properties": { - "instrument": "hat", - "note": "24", - "powered": "false" - }, - "id": 447 - }, - { - "properties": { - "instrument": "bass", - "note": "0", - "powered": "true" - }, - "id": 448 - }, - { - "properties": { - "instrument": "bass", - "note": "0", - "powered": "false" - }, - "id": 449 - }, - { - "properties": { - "instrument": "bass", - "note": "1", - "powered": "true" - }, - "id": 450 - }, - { - "properties": { - "instrument": "bass", - "note": "1", - "powered": "false" - }, - "id": 451 - }, - { - "properties": { - "instrument": "bass", - "note": "2", - "powered": "true" - }, - "id": 452 - }, - { - "properties": { - "instrument": "bass", - "note": "2", - "powered": "false" - }, - "id": 453 - }, - { - "properties": { - "instrument": "bass", - "note": "3", - "powered": "true" - }, - "id": 454 - }, - { - "properties": { - "instrument": "bass", - "note": "3", - "powered": "false" - }, - "id": 455 - }, - { - "properties": { - "instrument": "bass", - "note": "4", - "powered": "true" - }, - "id": 456 - }, - { - "properties": { - "instrument": "bass", - "note": "4", - "powered": "false" - }, - "id": 457 - }, - { - "properties": { - "instrument": "bass", - "note": "5", - "powered": "true" - }, - "id": 458 - }, - { - "properties": { - "instrument": "bass", - "note": "5", - "powered": "false" - }, - "id": 459 - }, - { - "properties": { - "instrument": "bass", - "note": "6", - "powered": "true" - }, - "id": 460 - }, - { - "properties": { - "instrument": "bass", - "note": "6", - "powered": "false" - }, - "id": 461 - }, - { - "properties": { - "instrument": "bass", - "note": "7", - "powered": "true" - }, - "id": 462 - }, - { - "properties": { - "instrument": "bass", - "note": "7", - "powered": "false" - }, - "id": 463 - }, - { - "properties": { - "instrument": "bass", - "note": "8", - "powered": "true" - }, - "id": 464 - }, - { - "properties": { - "instrument": "bass", - "note": "8", - "powered": "false" - }, - "id": 465 - }, - { - "properties": { - "instrument": "bass", - "note": "9", - "powered": "true" - }, - "id": 466 - }, - { - "properties": { - "instrument": "bass", - "note": "9", - "powered": "false" - }, - "id": 467 - }, - { - "properties": { - "instrument": "bass", - "note": "10", - "powered": "true" - }, - "id": 468 - }, - { - "properties": { - "instrument": "bass", - "note": "10", - "powered": "false" - }, - "id": 469 - }, - { - "properties": { - "instrument": "bass", - "note": "11", - "powered": "true" - }, - "id": 470 - }, - { - "properties": { - "instrument": "bass", - "note": "11", - "powered": "false" - }, - "id": 471 - }, - { - "properties": { - "instrument": "bass", - "note": "12", - "powered": "true" - }, - "id": 472 - }, - { - "properties": { - "instrument": "bass", - "note": "12", - "powered": "false" - }, - "id": 473 - }, - { - "properties": { - "instrument": "bass", - "note": "13", - "powered": "true" - }, - "id": 474 - }, - { - "properties": { - "instrument": "bass", - "note": "13", - "powered": "false" - }, - "id": 475 - }, - { - "properties": { - "instrument": "bass", - "note": "14", - "powered": "true" - }, - "id": 476 - }, - { - "properties": { - "instrument": "bass", - "note": "14", - "powered": "false" - }, - "id": 477 - }, - { - "properties": { - "instrument": "bass", - "note": "15", - "powered": "true" - }, - "id": 478 - }, - { - "properties": { - "instrument": "bass", - "note": "15", - "powered": "false" - }, - "id": 479 - }, - { - "properties": { - "instrument": "bass", - "note": "16", - "powered": "true" - }, - "id": 480 - }, - { - "properties": { - "instrument": "bass", - "note": "16", - "powered": "false" - }, - "id": 481 - }, - { - "properties": { - "instrument": "bass", - "note": "17", - "powered": "true" - }, - "id": 482 - }, - { - "properties": { - "instrument": "bass", - "note": "17", - "powered": "false" - }, - "id": 483 - }, - { - "properties": { - "instrument": "bass", - "note": "18", - "powered": "true" - }, - "id": 484 - }, - { - "properties": { - "instrument": "bass", - "note": "18", - "powered": "false" - }, - "id": 485 - }, - { - "properties": { - "instrument": "bass", - "note": "19", - "powered": "true" - }, - "id": 486 - }, - { - "properties": { - "instrument": "bass", - "note": "19", - "powered": "false" - }, - "id": 487 - }, - { - "properties": { - "instrument": "bass", - "note": "20", - "powered": "true" - }, - "id": 488 - }, - { - "properties": { - "instrument": "bass", - "note": "20", - "powered": "false" - }, - "id": 489 - }, - { - "properties": { - "instrument": "bass", - "note": "21", - "powered": "true" - }, - "id": 490 - }, - { - "properties": { - "instrument": "bass", - "note": "21", - "powered": "false" - }, - "id": 491 - }, - { - "properties": { - "instrument": "bass", - "note": "22", - "powered": "true" - }, - "id": 492 - }, - { - "properties": { - "instrument": "bass", - "note": "22", - "powered": "false" - }, - "id": 493 - }, - { - "properties": { - "instrument": "bass", - "note": "23", - "powered": "true" - }, - "id": 494 - }, - { - "properties": { - "instrument": "bass", - "note": "23", - "powered": "false" - }, - "id": 495 - }, - { - "properties": { - "instrument": "bass", - "note": "24", - "powered": "true" - }, - "id": 496 - }, - { - "properties": { - "instrument": "bass", - "note": "24", - "powered": "false" - }, - "id": 497 - }, - { - "properties": { - "instrument": "flute", - "note": "0", - "powered": "true" - }, - "id": 498 - }, - { - "properties": { - "instrument": "flute", - "note": "0", - "powered": "false" - }, - "id": 499 - }, - { - "properties": { - "instrument": "flute", - "note": "1", - "powered": "true" - }, - "id": 500 - }, - { - "properties": { - "instrument": "flute", - "note": "1", - "powered": "false" - }, - "id": 501 - }, - { - "properties": { - "instrument": "flute", - "note": "2", - "powered": "true" - }, - "id": 502 - }, - { - "properties": { - "instrument": "flute", - "note": "2", - "powered": "false" - }, - "id": 503 - }, - { - "properties": { - "instrument": "flute", - "note": "3", - "powered": "true" - }, - "id": 504 - }, - { - "properties": { - "instrument": "flute", - "note": "3", - "powered": "false" - }, - "id": 505 - }, - { - "properties": { - "instrument": "flute", - "note": "4", - "powered": "true" - }, - "id": 506 - }, - { - "properties": { - "instrument": "flute", - "note": "4", - "powered": "false" - }, - "id": 507 - }, - { - "properties": { - "instrument": "flute", - "note": "5", - "powered": "true" - }, - "id": 508 - }, - { - "properties": { - "instrument": "flute", - "note": "5", - "powered": "false" - }, - "id": 509 - }, - { - "properties": { - "instrument": "flute", - "note": "6", - "powered": "true" - }, - "id": 510 - }, - { - "properties": { - "instrument": "flute", - "note": "6", - "powered": "false" - }, - "id": 511 - }, - { - "properties": { - "instrument": "flute", - "note": "7", - "powered": "true" - }, - "id": 512 - }, - { - "properties": { - "instrument": "flute", - "note": "7", - "powered": "false" - }, - "id": 513 - }, - { - "properties": { - "instrument": "flute", - "note": "8", - "powered": "true" - }, - "id": 514 - }, - { - "properties": { - "instrument": "flute", - "note": "8", - "powered": "false" - }, - "id": 515 - }, - { - "properties": { - "instrument": "flute", - "note": "9", - "powered": "true" - }, - "id": 516 - }, - { - "properties": { - "instrument": "flute", - "note": "9", - "powered": "false" - }, - "id": 517 - }, - { - "properties": { - "instrument": "flute", - "note": "10", - "powered": "true" - }, - "id": 518 - }, - { - "properties": { - "instrument": "flute", - "note": "10", - "powered": "false" - }, - "id": 519 - }, - { - "properties": { - "instrument": "flute", - "note": "11", - "powered": "true" - }, - "id": 520 - }, - { - "properties": { - "instrument": "flute", - "note": "11", - "powered": "false" - }, - "id": 521 - }, - { - "properties": { - "instrument": "flute", - "note": "12", - "powered": "true" - }, - "id": 522 - }, - { - "properties": { - "instrument": "flute", - "note": "12", - "powered": "false" - }, - "id": 523 - }, - { - "properties": { - "instrument": "flute", - "note": "13", - "powered": "true" - }, - "id": 524 - }, - { - "properties": { - "instrument": "flute", - "note": "13", - "powered": "false" - }, - "id": 525 - }, - { - "properties": { - "instrument": "flute", - "note": "14", - "powered": "true" - }, - "id": 526 - }, - { - "properties": { - "instrument": "flute", - "note": "14", - "powered": "false" - }, - "id": 527 - }, - { - "properties": { - "instrument": "flute", - "note": "15", - "powered": "true" - }, - "id": 528 - }, - { - "properties": { - "instrument": "flute", - "note": "15", - "powered": "false" - }, - "id": 529 - }, - { - "properties": { - "instrument": "flute", - "note": "16", - "powered": "true" - }, - "id": 530 - }, - { - "properties": { - "instrument": "flute", - "note": "16", - "powered": "false" - }, - "id": 531 - }, - { - "properties": { - "instrument": "flute", - "note": "17", - "powered": "true" - }, - "id": 532 - }, - { - "properties": { - "instrument": "flute", - "note": "17", - "powered": "false" - }, - "id": 533 - }, - { - "properties": { - "instrument": "flute", - "note": "18", - "powered": "true" - }, - "id": 534 - }, - { - "properties": { - "instrument": "flute", - "note": "18", - "powered": "false" - }, - "id": 535 - }, - { - "properties": { - "instrument": "flute", - "note": "19", - "powered": "true" - }, - "id": 536 - }, - { - "properties": { - "instrument": "flute", - "note": "19", - "powered": "false" - }, - "id": 537 - }, - { - "properties": { - "instrument": "flute", - "note": "20", - "powered": "true" - }, - "id": 538 - }, - { - "properties": { - "instrument": "flute", - "note": "20", - "powered": "false" - }, - "id": 539 - }, - { - "properties": { - "instrument": "flute", - "note": "21", - "powered": "true" - }, - "id": 540 - }, - { - "properties": { - "instrument": "flute", - "note": "21", - "powered": "false" - }, - "id": 541 - }, - { - "properties": { - "instrument": "flute", - "note": "22", - "powered": "true" - }, - "id": 542 - }, - { - "properties": { - "instrument": "flute", - "note": "22", - "powered": "false" - }, - "id": 543 - }, - { - "properties": { - "instrument": "flute", - "note": "23", - "powered": "true" - }, - "id": 544 - }, - { - "properties": { - "instrument": "flute", - "note": "23", - "powered": "false" - }, - "id": 545 - }, - { - "properties": { - "instrument": "flute", - "note": "24", - "powered": "true" - }, - "id": 546 - }, - { - "properties": { - "instrument": "flute", - "note": "24", - "powered": "false" - }, - "id": 547 - }, - { - "properties": { - "instrument": "bell", - "note": "0", - "powered": "true" - }, - "id": 548 - }, - { - "properties": { - "instrument": "bell", - "note": "0", - "powered": "false" - }, - "id": 549 - }, - { - "properties": { - "instrument": "bell", - "note": "1", - "powered": "true" - }, - "id": 550 - }, - { - "properties": { - "instrument": "bell", - "note": "1", - "powered": "false" - }, - "id": 551 - }, - { - "properties": { - "instrument": "bell", - "note": "2", - "powered": "true" - }, - "id": 552 - }, - { - "properties": { - "instrument": "bell", - "note": "2", - "powered": "false" - }, - "id": 553 - }, - { - "properties": { - "instrument": "bell", - "note": "3", - "powered": "true" - }, - "id": 554 - }, - { - "properties": { - "instrument": "bell", - "note": "3", - "powered": "false" - }, - "id": 555 - }, - { - "properties": { - "instrument": "bell", - "note": "4", - "powered": "true" - }, - "id": 556 - }, - { - "properties": { - "instrument": "bell", - "note": "4", - "powered": "false" - }, - "id": 557 - }, - { - "properties": { - "instrument": "bell", - "note": "5", - "powered": "true" - }, - "id": 558 - }, - { - "properties": { - "instrument": "bell", - "note": "5", - "powered": "false" - }, - "id": 559 - }, - { - "properties": { - "instrument": "bell", - "note": "6", - "powered": "true" - }, - "id": 560 - }, - { - "properties": { - "instrument": "bell", - "note": "6", - "powered": "false" - }, - "id": 561 - }, - { - "properties": { - "instrument": "bell", - "note": "7", - "powered": "true" - }, - "id": 562 - }, - { - "properties": { - "instrument": "bell", - "note": "7", - "powered": "false" - }, - "id": 563 - }, - { - "properties": { - "instrument": "bell", - "note": "8", - "powered": "true" - }, - "id": 564 - }, - { - "properties": { - "instrument": "bell", - "note": "8", - "powered": "false" - }, - "id": 565 - }, - { - "properties": { - "instrument": "bell", - "note": "9", - "powered": "true" - }, - "id": 566 - }, - { - "properties": { - "instrument": "bell", - "note": "9", - "powered": "false" - }, - "id": 567 - }, - { - "properties": { - "instrument": "bell", - "note": "10", - "powered": "true" - }, - "id": 568 - }, - { - "properties": { - "instrument": "bell", - "note": "10", - "powered": "false" - }, - "id": 569 - }, - { - "properties": { - "instrument": "bell", - "note": "11", - "powered": "true" - }, - "id": 570 - }, - { - "properties": { - "instrument": "bell", - "note": "11", - "powered": "false" - }, - "id": 571 - }, - { - "properties": { - "instrument": "bell", - "note": "12", - "powered": "true" - }, - "id": 572 - }, - { - "properties": { - "instrument": "bell", - "note": "12", - "powered": "false" - }, - "id": 573 - }, - { - "properties": { - "instrument": "bell", - "note": "13", - "powered": "true" - }, - "id": 574 - }, - { - "properties": { - "instrument": "bell", - "note": "13", - "powered": "false" - }, - "id": 575 - }, - { - "properties": { - "instrument": "bell", - "note": "14", - "powered": "true" - }, - "id": 576 - }, - { - "properties": { - "instrument": "bell", - "note": "14", - "powered": "false" - }, - "id": 577 - }, - { - "properties": { - "instrument": "bell", - "note": "15", - "powered": "true" - }, - "id": 578 - }, - { - "properties": { - "instrument": "bell", - "note": "15", - "powered": "false" - }, - "id": 579 - }, - { - "properties": { - "instrument": "bell", - "note": "16", - "powered": "true" - }, - "id": 580 - }, - { - "properties": { - "instrument": "bell", - "note": "16", - "powered": "false" - }, - "id": 581 - }, - { - "properties": { - "instrument": "bell", - "note": "17", - "powered": "true" - }, - "id": 582 - }, - { - "properties": { - "instrument": "bell", - "note": "17", - "powered": "false" - }, - "id": 583 - }, - { - "properties": { - "instrument": "bell", - "note": "18", - "powered": "true" - }, - "id": 584 - }, - { - "properties": { - "instrument": "bell", - "note": "18", - "powered": "false" - }, - "id": 585 - }, - { - "properties": { - "instrument": "bell", - "note": "19", - "powered": "true" - }, - "id": 586 - }, - { - "properties": { - "instrument": "bell", - "note": "19", - "powered": "false" - }, - "id": 587 - }, - { - "properties": { - "instrument": "bell", - "note": "20", - "powered": "true" - }, - "id": 588 - }, - { - "properties": { - "instrument": "bell", - "note": "20", - "powered": "false" - }, - "id": 589 - }, - { - "properties": { - "instrument": "bell", - "note": "21", - "powered": "true" - }, - "id": 590 - }, - { - "properties": { - "instrument": "bell", - "note": "21", - "powered": "false" - }, - "id": 591 - }, - { - "properties": { - "instrument": "bell", - "note": "22", - "powered": "true" - }, - "id": 592 - }, - { - "properties": { - "instrument": "bell", - "note": "22", - "powered": "false" - }, - "id": 593 - }, - { - "properties": { - "instrument": "bell", - "note": "23", - "powered": "true" - }, - "id": 594 - }, - { - "properties": { - "instrument": "bell", - "note": "23", - "powered": "false" - }, - "id": 595 - }, - { - "properties": { - "instrument": "bell", - "note": "24", - "powered": "true" - }, - "id": 596 - }, - { - "properties": { - "instrument": "bell", - "note": "24", - "powered": "false" - }, - "id": 597 - }, - { - "properties": { - "instrument": "guitar", - "note": "0", - "powered": "true" - }, - "id": 598 - }, - { - "properties": { - "instrument": "guitar", - "note": "0", - "powered": "false" - }, - "id": 599 - }, - { - "properties": { - "instrument": "guitar", - "note": "1", - "powered": "true" - }, - "id": 600 - }, - { - "properties": { - "instrument": "guitar", - "note": "1", - "powered": "false" - }, - "id": 601 - }, - { - "properties": { - "instrument": "guitar", - "note": "2", - "powered": "true" - }, - "id": 602 - }, - { - "properties": { - "instrument": "guitar", - "note": "2", - "powered": "false" - }, - "id": 603 - }, - { - "properties": { - "instrument": "guitar", - "note": "3", - "powered": "true" - }, - "id": 604 - }, - { - "properties": { - "instrument": "guitar", - "note": "3", - "powered": "false" - }, - "id": 605 - }, - { - "properties": { - "instrument": "guitar", - "note": "4", - "powered": "true" - }, - "id": 606 - }, - { - "properties": { - "instrument": "guitar", - "note": "4", - "powered": "false" - }, - "id": 607 - }, - { - "properties": { - "instrument": "guitar", - "note": "5", - "powered": "true" - }, - "id": 608 - }, - { - "properties": { - "instrument": "guitar", - "note": "5", - "powered": "false" - }, - "id": 609 - }, - { - "properties": { - "instrument": "guitar", - "note": "6", - "powered": "true" - }, - "id": 610 - }, - { - "properties": { - "instrument": "guitar", - "note": "6", - "powered": "false" - }, - "id": 611 - }, - { - "properties": { - "instrument": "guitar", - "note": "7", - "powered": "true" - }, - "id": 612 - }, - { - "properties": { - "instrument": "guitar", - "note": "7", - "powered": "false" - }, - "id": 613 - }, - { - "properties": { - "instrument": "guitar", - "note": "8", - "powered": "true" - }, - "id": 614 - }, - { - "properties": { - "instrument": "guitar", - "note": "8", - "powered": "false" - }, - "id": 615 - }, - { - "properties": { - "instrument": "guitar", - "note": "9", - "powered": "true" - }, - "id": 616 - }, - { - "properties": { - "instrument": "guitar", - "note": "9", - "powered": "false" - }, - "id": 617 - }, - { - "properties": { - "instrument": "guitar", - "note": "10", - "powered": "true" - }, - "id": 618 - }, - { - "properties": { - "instrument": "guitar", - "note": "10", - "powered": "false" - }, - "id": 619 - }, - { - "properties": { - "instrument": "guitar", - "note": "11", - "powered": "true" - }, - "id": 620 - }, - { - "properties": { - "instrument": "guitar", - "note": "11", - "powered": "false" - }, - "id": 621 - }, - { - "properties": { - "instrument": "guitar", - "note": "12", - "powered": "true" - }, - "id": 622 - }, - { - "properties": { - "instrument": "guitar", - "note": "12", - "powered": "false" - }, - "id": 623 - }, - { - "properties": { - "instrument": "guitar", - "note": "13", - "powered": "true" - }, - "id": 624 - }, - { - "properties": { - "instrument": "guitar", - "note": "13", - "powered": "false" - }, - "id": 625 - }, - { - "properties": { - "instrument": "guitar", - "note": "14", - "powered": "true" - }, - "id": 626 - }, - { - "properties": { - "instrument": "guitar", - "note": "14", - "powered": "false" - }, - "id": 627 - }, - { - "properties": { - "instrument": "guitar", - "note": "15", - "powered": "true" - }, - "id": 628 - }, - { - "properties": { - "instrument": "guitar", - "note": "15", - "powered": "false" - }, - "id": 629 - }, - { - "properties": { - "instrument": "guitar", - "note": "16", - "powered": "true" - }, - "id": 630 - }, - { - "properties": { - "instrument": "guitar", - "note": "16", - "powered": "false" - }, - "id": 631 - }, - { - "properties": { - "instrument": "guitar", - "note": "17", - "powered": "true" - }, - "id": 632 - }, - { - "properties": { - "instrument": "guitar", - "note": "17", - "powered": "false" - }, - "id": 633 - }, - { - "properties": { - "instrument": "guitar", - "note": "18", - "powered": "true" - }, - "id": 634 - }, - { - "properties": { - "instrument": "guitar", - "note": "18", - "powered": "false" - }, - "id": 635 - }, - { - "properties": { - "instrument": "guitar", - "note": "19", - "powered": "true" - }, - "id": 636 - }, - { - "properties": { - "instrument": "guitar", - "note": "19", - "powered": "false" - }, - "id": 637 - }, - { - "properties": { - "instrument": "guitar", - "note": "20", - "powered": "true" - }, - "id": 638 - }, - { - "properties": { - "instrument": "guitar", - "note": "20", - "powered": "false" - }, - "id": 639 - }, - { - "properties": { - "instrument": "guitar", - "note": "21", - "powered": "true" - }, - "id": 640 - }, - { - "properties": { - "instrument": "guitar", - "note": "21", - "powered": "false" - }, - "id": 641 - }, - { - "properties": { - "instrument": "guitar", - "note": "22", - "powered": "true" - }, - "id": 642 - }, - { - "properties": { - "instrument": "guitar", - "note": "22", - "powered": "false" - }, - "id": 643 - }, - { - "properties": { - "instrument": "guitar", - "note": "23", - "powered": "true" - }, - "id": 644 - }, - { - "properties": { - "instrument": "guitar", - "note": "23", - "powered": "false" - }, - "id": 645 - }, - { - "properties": { - "instrument": "guitar", - "note": "24", - "powered": "true" - }, - "id": 646 - }, - { - "properties": { - "instrument": "guitar", - "note": "24", - "powered": "false" - }, - "id": 647 - }, - { - "properties": { - "instrument": "chime", - "note": "0", - "powered": "true" - }, - "id": 648 - }, - { - "properties": { - "instrument": "chime", - "note": "0", - "powered": "false" - }, - "id": 649 - }, - { - "properties": { - "instrument": "chime", - "note": "1", - "powered": "true" - }, - "id": 650 - }, - { - "properties": { - "instrument": "chime", - "note": "1", - "powered": "false" - }, - "id": 651 - }, - { - "properties": { - "instrument": "chime", - "note": "2", - "powered": "true" - }, - "id": 652 - }, - { - "properties": { - "instrument": "chime", - "note": "2", - "powered": "false" - }, - "id": 653 - }, - { - "properties": { - "instrument": "chime", - "note": "3", - "powered": "true" - }, - "id": 654 - }, - { - "properties": { - "instrument": "chime", - "note": "3", - "powered": "false" - }, - "id": 655 - }, - { - "properties": { - "instrument": "chime", - "note": "4", - "powered": "true" - }, - "id": 656 - }, - { - "properties": { - "instrument": "chime", - "note": "4", - "powered": "false" - }, - "id": 657 - }, - { - "properties": { - "instrument": "chime", - "note": "5", - "powered": "true" - }, - "id": 658 - }, - { - "properties": { - "instrument": "chime", - "note": "5", - "powered": "false" - }, - "id": 659 - }, - { - "properties": { - "instrument": "chime", - "note": "6", - "powered": "true" - }, - "id": 660 - }, - { - "properties": { - "instrument": "chime", - "note": "6", - "powered": "false" - }, - "id": 661 - }, - { - "properties": { - "instrument": "chime", - "note": "7", - "powered": "true" - }, - "id": 662 - }, - { - "properties": { - "instrument": "chime", - "note": "7", - "powered": "false" - }, - "id": 663 - }, - { - "properties": { - "instrument": "chime", - "note": "8", - "powered": "true" - }, - "id": 664 - }, - { - "properties": { - "instrument": "chime", - "note": "8", - "powered": "false" - }, - "id": 665 - }, - { - "properties": { - "instrument": "chime", - "note": "9", - "powered": "true" - }, - "id": 666 - }, - { - "properties": { - "instrument": "chime", - "note": "9", - "powered": "false" - }, - "id": 667 - }, - { - "properties": { - "instrument": "chime", - "note": "10", - "powered": "true" - }, - "id": 668 - }, - { - "properties": { - "instrument": "chime", - "note": "10", - "powered": "false" - }, - "id": 669 - }, - { - "properties": { - "instrument": "chime", - "note": "11", - "powered": "true" - }, - "id": 670 - }, - { - "properties": { - "instrument": "chime", - "note": "11", - "powered": "false" - }, - "id": 671 - }, - { - "properties": { - "instrument": "chime", - "note": "12", - "powered": "true" - }, - "id": 672 - }, - { - "properties": { - "instrument": "chime", - "note": "12", - "powered": "false" - }, - "id": 673 - }, - { - "properties": { - "instrument": "chime", - "note": "13", - "powered": "true" - }, - "id": 674 - }, - { - "properties": { - "instrument": "chime", - "note": "13", - "powered": "false" - }, - "id": 675 - }, - { - "properties": { - "instrument": "chime", - "note": "14", - "powered": "true" - }, - "id": 676 - }, - { - "properties": { - "instrument": "chime", - "note": "14", - "powered": "false" - }, - "id": 677 - }, - { - "properties": { - "instrument": "chime", - "note": "15", - "powered": "true" - }, - "id": 678 - }, - { - "properties": { - "instrument": "chime", - "note": "15", - "powered": "false" - }, - "id": 679 - }, - { - "properties": { - "instrument": "chime", - "note": "16", - "powered": "true" - }, - "id": 680 - }, - { - "properties": { - "instrument": "chime", - "note": "16", - "powered": "false" - }, - "id": 681 - }, - { - "properties": { - "instrument": "chime", - "note": "17", - "powered": "true" - }, - "id": 682 - }, - { - "properties": { - "instrument": "chime", - "note": "17", - "powered": "false" - }, - "id": 683 - }, - { - "properties": { - "instrument": "chime", - "note": "18", - "powered": "true" - }, - "id": 684 - }, - { - "properties": { - "instrument": "chime", - "note": "18", - "powered": "false" - }, - "id": 685 - }, - { - "properties": { - "instrument": "chime", - "note": "19", - "powered": "true" - }, - "id": 686 - }, - { - "properties": { - "instrument": "chime", - "note": "19", - "powered": "false" - }, - "id": 687 - }, - { - "properties": { - "instrument": "chime", - "note": "20", - "powered": "true" - }, - "id": 688 - }, - { - "properties": { - "instrument": "chime", - "note": "20", - "powered": "false" - }, - "id": 689 - }, - { - "properties": { - "instrument": "chime", - "note": "21", - "powered": "true" - }, - "id": 690 - }, - { - "properties": { - "instrument": "chime", - "note": "21", - "powered": "false" - }, - "id": 691 - }, - { - "properties": { - "instrument": "chime", - "note": "22", - "powered": "true" - }, - "id": 692 - }, - { - "properties": { - "instrument": "chime", - "note": "22", - "powered": "false" - }, - "id": 693 - }, - { - "properties": { - "instrument": "chime", - "note": "23", - "powered": "true" - }, - "id": 694 - }, - { - "properties": { - "instrument": "chime", - "note": "23", - "powered": "false" - }, - "id": 695 - }, - { - "properties": { - "instrument": "chime", - "note": "24", - "powered": "true" - }, - "id": 696 - }, - { - "properties": { - "instrument": "chime", - "note": "24", - "powered": "false" - }, - "id": 697 - }, - { - "properties": { - "instrument": "xylophone", - "note": "0", - "powered": "true" - }, - "id": 698 - }, - { - "properties": { - "instrument": "xylophone", - "note": "0", - "powered": "false" - }, - "id": 699 - }, - { - "properties": { - "instrument": "xylophone", - "note": "1", - "powered": "true" - }, - "id": 700 - }, - { - "properties": { - "instrument": "xylophone", - "note": "1", - "powered": "false" - }, - "id": 701 - }, - { - "properties": { - "instrument": "xylophone", - "note": "2", - "powered": "true" - }, - "id": 702 - }, - { - "properties": { - "instrument": "xylophone", - "note": "2", - "powered": "false" - }, - "id": 703 - }, - { - "properties": { - "instrument": "xylophone", - "note": "3", - "powered": "true" - }, - "id": 704 - }, - { - "properties": { - "instrument": "xylophone", - "note": "3", - "powered": "false" - }, - "id": 705 - }, - { - "properties": { - "instrument": "xylophone", - "note": "4", - "powered": "true" - }, - "id": 706 - }, - { - "properties": { - "instrument": "xylophone", - "note": "4", - "powered": "false" - }, - "id": 707 - }, - { - "properties": { - "instrument": "xylophone", - "note": "5", - "powered": "true" - }, - "id": 708 - }, - { - "properties": { - "instrument": "xylophone", - "note": "5", - "powered": "false" - }, - "id": 709 - }, - { - "properties": { - "instrument": "xylophone", - "note": "6", - "powered": "true" - }, - "id": 710 - }, - { - "properties": { - "instrument": "xylophone", - "note": "6", - "powered": "false" - }, - "id": 711 - }, - { - "properties": { - "instrument": "xylophone", - "note": "7", - "powered": "true" - }, - "id": 712 - }, - { - "properties": { - "instrument": "xylophone", - "note": "7", - "powered": "false" - }, - "id": 713 - }, - { - "properties": { - "instrument": "xylophone", - "note": "8", - "powered": "true" - }, - "id": 714 - }, - { - "properties": { - "instrument": "xylophone", - "note": "8", - "powered": "false" - }, - "id": 715 - }, - { - "properties": { - "instrument": "xylophone", - "note": "9", - "powered": "true" - }, - "id": 716 - }, - { - "properties": { - "instrument": "xylophone", - "note": "9", - "powered": "false" - }, - "id": 717 - }, - { - "properties": { - "instrument": "xylophone", - "note": "10", - "powered": "true" - }, - "id": 718 - }, - { - "properties": { - "instrument": "xylophone", - "note": "10", - "powered": "false" - }, - "id": 719 - }, - { - "properties": { - "instrument": "xylophone", - "note": "11", - "powered": "true" - }, - "id": 720 - }, - { - "properties": { - "instrument": "xylophone", - "note": "11", - "powered": "false" - }, - "id": 721 - }, - { - "properties": { - "instrument": "xylophone", - "note": "12", - "powered": "true" - }, - "id": 722 - }, - { - "properties": { - "instrument": "xylophone", - "note": "12", - "powered": "false" - }, - "id": 723 - }, - { - "properties": { - "instrument": "xylophone", - "note": "13", - "powered": "true" - }, - "id": 724 - }, - { - "properties": { - "instrument": "xylophone", - "note": "13", - "powered": "false" - }, - "id": 725 - }, - { - "properties": { - "instrument": "xylophone", - "note": "14", - "powered": "true" - }, - "id": 726 - }, - { - "properties": { - "instrument": "xylophone", - "note": "14", - "powered": "false" - }, - "id": 727 - }, - { - "properties": { - "instrument": "xylophone", - "note": "15", - "powered": "true" - }, - "id": 728 - }, - { - "properties": { - "instrument": "xylophone", - "note": "15", - "powered": "false" - }, - "id": 729 - }, - { - "properties": { - "instrument": "xylophone", - "note": "16", - "powered": "true" - }, - "id": 730 - }, - { - "properties": { - "instrument": "xylophone", - "note": "16", - "powered": "false" - }, - "id": 731 - }, - { - "properties": { - "instrument": "xylophone", - "note": "17", - "powered": "true" - }, - "id": 732 - }, - { - "properties": { - "instrument": "xylophone", - "note": "17", - "powered": "false" - }, - "id": 733 - }, - { - "properties": { - "instrument": "xylophone", - "note": "18", - "powered": "true" - }, - "id": 734 - }, - { - "properties": { - "instrument": "xylophone", - "note": "18", - "powered": "false" - }, - "id": 735 - }, - { - "properties": { - "instrument": "xylophone", - "note": "19", - "powered": "true" - }, - "id": 736 - }, - { - "properties": { - "instrument": "xylophone", - "note": "19", - "powered": "false" - }, - "id": 737 - }, - { - "properties": { - "instrument": "xylophone", - "note": "20", - "powered": "true" - }, - "id": 738 - }, - { - "properties": { - "instrument": "xylophone", - "note": "20", - "powered": "false" - }, - "id": 739 - }, - { - "properties": { - "instrument": "xylophone", - "note": "21", - "powered": "true" - }, - "id": 740 - }, - { - "properties": { - "instrument": "xylophone", - "note": "21", - "powered": "false" - }, - "id": 741 - }, - { - "properties": { - "instrument": "xylophone", - "note": "22", - "powered": "true" - }, - "id": 742 - }, - { - "properties": { - "instrument": "xylophone", - "note": "22", - "powered": "false" - }, - "id": 743 - }, - { - "properties": { - "instrument": "xylophone", - "note": "23", - "powered": "true" - }, - "id": 744 - }, - { - "properties": { - "instrument": "xylophone", - "note": "23", - "powered": "false" - }, - "id": 745 - }, - { - "properties": { - "instrument": "xylophone", - "note": "24", - "powered": "true" - }, - "id": 746 - }, - { - "properties": { - "instrument": "xylophone", - "note": "24", - "powered": "false" - }, - "id": 747 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "0", - "powered": "true" - }, - "id": 748 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "0", - "powered": "false" - }, - "id": 749 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "1", - "powered": "true" - }, - "id": 750 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "1", - "powered": "false" - }, - "id": 751 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "2", - "powered": "true" - }, - "id": 752 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "2", - "powered": "false" - }, - "id": 753 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "3", - "powered": "true" - }, - "id": 754 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "3", - "powered": "false" - }, - "id": 755 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "4", - "powered": "true" - }, - "id": 756 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "4", - "powered": "false" - }, - "id": 757 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "5", - "powered": "true" - }, - "id": 758 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "5", - "powered": "false" - }, - "id": 759 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "6", - "powered": "true" - }, - "id": 760 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "6", - "powered": "false" - }, - "id": 761 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "7", - "powered": "true" - }, - "id": 762 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "7", - "powered": "false" - }, - "id": 763 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "8", - "powered": "true" - }, - "id": 764 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "8", - "powered": "false" - }, - "id": 765 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "9", - "powered": "true" - }, - "id": 766 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "9", - "powered": "false" - }, - "id": 767 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "10", - "powered": "true" - }, - "id": 768 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "10", - "powered": "false" - }, - "id": 769 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "11", - "powered": "true" - }, - "id": 770 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "11", - "powered": "false" - }, - "id": 771 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "12", - "powered": "true" - }, - "id": 772 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "12", - "powered": "false" - }, - "id": 773 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "13", - "powered": "true" - }, - "id": 774 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "13", - "powered": "false" - }, - "id": 775 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "14", - "powered": "true" - }, - "id": 776 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "14", - "powered": "false" - }, - "id": 777 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "15", - "powered": "true" - }, - "id": 778 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "15", - "powered": "false" - }, - "id": 779 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "16", - "powered": "true" - }, - "id": 780 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "16", - "powered": "false" - }, - "id": 781 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "17", - "powered": "true" - }, - "id": 782 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "17", - "powered": "false" - }, - "id": 783 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "18", - "powered": "true" - }, - "id": 784 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "18", - "powered": "false" - }, - "id": 785 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "19", - "powered": "true" - }, - "id": 786 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "19", - "powered": "false" - }, - "id": 787 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "20", - "powered": "true" - }, - "id": 788 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "20", - "powered": "false" - }, - "id": 789 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "21", - "powered": "true" - }, - "id": 790 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "21", - "powered": "false" - }, - "id": 791 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "22", - "powered": "true" - }, - "id": 792 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "22", - "powered": "false" - }, - "id": 793 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "23", - "powered": "true" - }, - "id": 794 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "23", - "powered": "false" - }, - "id": 795 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "24", - "powered": "true" - }, - "id": 796 - }, - { - "properties": { - "instrument": "iron_xylophone", - "note": "24", - "powered": "false" - }, - "id": 797 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "0", - "powered": "true" - }, - "id": 798 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "0", - "powered": "false" - }, - "id": 799 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "1", - "powered": "true" - }, - "id": 800 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "1", - "powered": "false" - }, - "id": 801 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "2", - "powered": "true" - }, - "id": 802 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "2", - "powered": "false" - }, - "id": 803 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "3", - "powered": "true" - }, - "id": 804 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "3", - "powered": "false" - }, - "id": 805 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "4", - "powered": "true" - }, - "id": 806 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "4", - "powered": "false" - }, - "id": 807 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "5", - "powered": "true" - }, - "id": 808 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "5", - "powered": "false" - }, - "id": 809 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "6", - "powered": "true" - }, - "id": 810 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "6", - "powered": "false" - }, - "id": 811 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "7", - "powered": "true" - }, - "id": 812 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "7", - "powered": "false" - }, - "id": 813 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "8", - "powered": "true" - }, - "id": 814 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "8", - "powered": "false" - }, - "id": 815 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "9", - "powered": "true" - }, - "id": 816 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "9", - "powered": "false" - }, - "id": 817 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "10", - "powered": "true" - }, - "id": 818 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "10", - "powered": "false" - }, - "id": 819 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "11", - "powered": "true" - }, - "id": 820 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "11", - "powered": "false" - }, - "id": 821 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "12", - "powered": "true" - }, - "id": 822 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "12", - "powered": "false" - }, - "id": 823 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "13", - "powered": "true" - }, - "id": 824 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "13", - "powered": "false" - }, - "id": 825 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "14", - "powered": "true" - }, - "id": 826 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "14", - "powered": "false" - }, - "id": 827 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "15", - "powered": "true" - }, - "id": 828 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "15", - "powered": "false" - }, - "id": 829 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "16", - "powered": "true" - }, - "id": 830 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "16", - "powered": "false" - }, - "id": 831 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "17", - "powered": "true" - }, - "id": 832 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "17", - "powered": "false" - }, - "id": 833 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "18", - "powered": "true" - }, - "id": 834 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "18", - "powered": "false" - }, - "id": 835 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "19", - "powered": "true" - }, - "id": 836 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "19", - "powered": "false" - }, - "id": 837 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "20", - "powered": "true" - }, - "id": 838 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "20", - "powered": "false" - }, - "id": 839 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "21", - "powered": "true" - }, - "id": 840 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "21", - "powered": "false" - }, - "id": 841 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "22", - "powered": "true" - }, - "id": 842 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "22", - "powered": "false" - }, - "id": 843 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "23", - "powered": "true" - }, - "id": 844 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "23", - "powered": "false" - }, - "id": 845 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "24", - "powered": "true" - }, - "id": 846 - }, - { - "properties": { - "instrument": "cow_bell", - "note": "24", - "powered": "false" - }, - "id": 847 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "0", - "powered": "true" - }, - "id": 848 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "0", - "powered": "false" - }, - "id": 849 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "1", - "powered": "true" - }, - "id": 850 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "1", - "powered": "false" - }, - "id": 851 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "true" - }, - "id": 852 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "false" - }, - "id": 853 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "true" - }, - "id": 854 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "false" - }, - "id": 855 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "true" - }, - "id": 856 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "false" - }, - "id": 857 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "true" - }, - "id": 858 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "false" - }, - "id": 859 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "true" - }, - "id": 860 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "false" - }, - "id": 861 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "true" - }, - "id": 862 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "false" - }, - "id": 863 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "true" - }, - "id": 864 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "false" - }, - "id": 865 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "true" - }, - "id": 866 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "false" - }, - "id": 867 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "true" - }, - "id": 868 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "false" - }, - "id": 869 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "true" - }, - "id": 870 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "false" - }, - "id": 871 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "true" - }, - "id": 872 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "false" - }, - "id": 873 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "true" - }, - "id": 874 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "false" - }, - "id": 875 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "true" - }, - "id": 876 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "false" - }, - "id": 877 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "true" - }, - "id": 878 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "false" - }, - "id": 879 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "true" - }, - "id": 880 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "false" - }, - "id": 881 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "true" - }, - "id": 882 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "false" - }, - "id": 883 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "true" - }, - "id": 884 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "false" - }, - "id": 885 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "true" - }, - "id": 886 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "false" - }, - "id": 887 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "true" - }, - "id": 888 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "false" - }, - "id": 889 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "true" - }, - "id": 890 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "false" - }, - "id": 891 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "true" - }, - "id": 892 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "false" - }, - "id": 893 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "true" - }, - "id": 894 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "false" - }, - "id": 895 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "true" - }, - "id": 896 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "false" - }, - "id": 897 - }, - { - "properties": { - "instrument": "bit", - "note": "0", - "powered": "true" - }, - "id": 898 - }, - { - "properties": { - "instrument": "bit", - "note": "0", - "powered": "false" - }, - "id": 899 - }, - { - "properties": { - "instrument": "bit", - "note": "1", - "powered": "true" - }, - "id": 900 - }, - { - "properties": { - "instrument": "bit", - "note": "1", - "powered": "false" - }, - "id": 901 - }, - { - "properties": { - "instrument": "bit", - "note": "2", - "powered": "true" - }, - "id": 902 - }, - { - "properties": { - "instrument": "bit", - "note": "2", - "powered": "false" - }, - "id": 903 - }, - { - "properties": { - "instrument": "bit", - "note": "3", - "powered": "true" - }, - "id": 904 - }, - { - "properties": { - "instrument": "bit", - "note": "3", - "powered": "false" - }, - "id": 905 - }, - { - "properties": { - "instrument": "bit", - "note": "4", - "powered": "true" - }, - "id": 906 - }, - { - "properties": { - "instrument": "bit", - "note": "4", - "powered": "false" - }, - "id": 907 - }, - { - "properties": { - "instrument": "bit", - "note": "5", - "powered": "true" - }, - "id": 908 - }, - { - "properties": { - "instrument": "bit", - "note": "5", - "powered": "false" - }, - "id": 909 - }, - { - "properties": { - "instrument": "bit", - "note": "6", - "powered": "true" - }, - "id": 910 - }, - { - "properties": { - "instrument": "bit", - "note": "6", - "powered": "false" - }, - "id": 911 - }, - { - "properties": { - "instrument": "bit", - "note": "7", - "powered": "true" - }, - "id": 912 - }, - { - "properties": { - "instrument": "bit", - "note": "7", - "powered": "false" - }, - "id": 913 - }, - { - "properties": { - "instrument": "bit", - "note": "8", - "powered": "true" - }, - "id": 914 - }, - { - "properties": { - "instrument": "bit", - "note": "8", - "powered": "false" - }, - "id": 915 - }, - { - "properties": { - "instrument": "bit", - "note": "9", - "powered": "true" - }, - "id": 916 - }, - { - "properties": { - "instrument": "bit", - "note": "9", - "powered": "false" - }, - "id": 917 - }, - { - "properties": { - "instrument": "bit", - "note": "10", - "powered": "true" - }, - "id": 918 - }, - { - "properties": { - "instrument": "bit", - "note": "10", - "powered": "false" - }, - "id": 919 - }, - { - "properties": { - "instrument": "bit", - "note": "11", - "powered": "true" - }, - "id": 920 - }, - { - "properties": { - "instrument": "bit", - "note": "11", - "powered": "false" - }, - "id": 921 - }, - { - "properties": { - "instrument": "bit", - "note": "12", - "powered": "true" - }, - "id": 922 - }, - { - "properties": { - "instrument": "bit", - "note": "12", - "powered": "false" - }, - "id": 923 - }, - { - "properties": { - "instrument": "bit", - "note": "13", - "powered": "true" - }, - "id": 924 - }, - { - "properties": { - "instrument": "bit", - "note": "13", - "powered": "false" - }, - "id": 925 - }, - { - "properties": { - "instrument": "bit", - "note": "14", - "powered": "true" - }, - "id": 926 - }, - { - "properties": { - "instrument": "bit", - "note": "14", - "powered": "false" - }, - "id": 927 - }, - { - "properties": { - "instrument": "bit", - "note": "15", - "powered": "true" - }, - "id": 928 - }, - { - "properties": { - "instrument": "bit", - "note": "15", - "powered": "false" - }, - "id": 929 - }, - { - "properties": { - "instrument": "bit", - "note": "16", - "powered": "true" - }, - "id": 930 - }, - { - "properties": { - "instrument": "bit", - "note": "16", - "powered": "false" - }, - "id": 931 - }, - { - "properties": { - "instrument": "bit", - "note": "17", - "powered": "true" - }, - "id": 932 - }, - { - "properties": { - "instrument": "bit", - "note": "17", - "powered": "false" - }, - "id": 933 - }, - { - "properties": { - "instrument": "bit", - "note": "18", - "powered": "true" - }, - "id": 934 - }, - { - "properties": { - "instrument": "bit", - "note": "18", - "powered": "false" - }, - "id": 935 - }, - { - "properties": { - "instrument": "bit", - "note": "19", - "powered": "true" - }, - "id": 936 - }, - { - "properties": { - "instrument": "bit", - "note": "19", - "powered": "false" - }, - "id": 937 - }, - { - "properties": { - "instrument": "bit", - "note": "20", - "powered": "true" - }, - "id": 938 - }, - { - "properties": { - "instrument": "bit", - "note": "20", - "powered": "false" - }, - "id": 939 - }, - { - "properties": { - "instrument": "bit", - "note": "21", - "powered": "true" - }, - "id": 940 - }, - { - "properties": { - "instrument": "bit", - "note": "21", - "powered": "false" - }, - "id": 941 - }, - { - "properties": { - "instrument": "bit", - "note": "22", - "powered": "true" - }, - "id": 942 - }, - { - "properties": { - "instrument": "bit", - "note": "22", - "powered": "false" - }, - "id": 943 - }, - { - "properties": { - "instrument": "bit", - "note": "23", - "powered": "true" - }, - "id": 944 - }, - { - "properties": { - "instrument": "bit", - "note": "23", - "powered": "false" - }, - "id": 945 - }, - { - "properties": { - "instrument": "bit", - "note": "24", - "powered": "true" - }, - "id": 946 - }, - { - "properties": { - "instrument": "bit", - "note": "24", - "powered": "false" - }, - "id": 947 - }, - { - "properties": { - "instrument": "banjo", - "note": "0", - "powered": "true" - }, - "id": 948 - }, - { - "properties": { - "instrument": "banjo", - "note": "0", - "powered": "false" - }, - "id": 949 - }, - { - "properties": { - "instrument": "banjo", - "note": "1", - "powered": "true" - }, - "id": 950 - }, - { - "properties": { - "instrument": "banjo", - "note": "1", - "powered": "false" - }, - "id": 951 - }, - { - "properties": { - "instrument": "banjo", - "note": "2", - "powered": "true" - }, - "id": 952 - }, - { - "properties": { - "instrument": "banjo", - "note": "2", - "powered": "false" - }, - "id": 953 - }, - { - "properties": { - "instrument": "banjo", - "note": "3", - "powered": "true" - }, - "id": 954 - }, - { - "properties": { - "instrument": "banjo", - "note": "3", - "powered": "false" - }, - "id": 955 - }, - { - "properties": { - "instrument": "banjo", - "note": "4", - "powered": "true" - }, - "id": 956 - }, - { - "properties": { - "instrument": "banjo", - "note": "4", - "powered": "false" - }, - "id": 957 - }, - { - "properties": { - "instrument": "banjo", - "note": "5", - "powered": "true" - }, - "id": 958 - }, - { - "properties": { - "instrument": "banjo", - "note": "5", - "powered": "false" - }, - "id": 959 - }, - { - "properties": { - "instrument": "banjo", - "note": "6", - "powered": "true" - }, - "id": 960 - }, - { - "properties": { - "instrument": "banjo", - "note": "6", - "powered": "false" - }, - "id": 961 - }, - { - "properties": { - "instrument": "banjo", - "note": "7", - "powered": "true" - }, - "id": 962 - }, - { - "properties": { - "instrument": "banjo", - "note": "7", - "powered": "false" - }, - "id": 963 - }, - { - "properties": { - "instrument": "banjo", - "note": "8", - "powered": "true" - }, - "id": 964 - }, - { - "properties": { - "instrument": "banjo", - "note": "8", - "powered": "false" - }, - "id": 965 - }, - { - "properties": { - "instrument": "banjo", - "note": "9", - "powered": "true" - }, - "id": 966 - }, - { - "properties": { - "instrument": "banjo", - "note": "9", - "powered": "false" - }, - "id": 967 - }, - { - "properties": { - "instrument": "banjo", - "note": "10", - "powered": "true" - }, - "id": 968 - }, - { - "properties": { - "instrument": "banjo", - "note": "10", - "powered": "false" - }, - "id": 969 - }, - { - "properties": { - "instrument": "banjo", - "note": "11", - "powered": "true" - }, - "id": 970 - }, - { - "properties": { - "instrument": "banjo", - "note": "11", - "powered": "false" - }, - "id": 971 - }, - { - "properties": { - "instrument": "banjo", - "note": "12", - "powered": "true" - }, - "id": 972 - }, - { - "properties": { - "instrument": "banjo", - "note": "12", - "powered": "false" - }, - "id": 973 - }, - { - "properties": { - "instrument": "banjo", - "note": "13", - "powered": "true" - }, - "id": 974 - }, - { - "properties": { - "instrument": "banjo", - "note": "13", - "powered": "false" - }, - "id": 975 - }, - { - "properties": { - "instrument": "banjo", - "note": "14", - "powered": "true" - }, - "id": 976 - }, - { - "properties": { - "instrument": "banjo", - "note": "14", - "powered": "false" - }, - "id": 977 - }, - { - "properties": { - "instrument": "banjo", - "note": "15", - "powered": "true" - }, - "id": 978 - }, - { - "properties": { - "instrument": "banjo", - "note": "15", - "powered": "false" - }, - "id": 979 - }, - { - "properties": { - "instrument": "banjo", - "note": "16", - "powered": "true" - }, - "id": 980 - }, - { - "properties": { - "instrument": "banjo", - "note": "16", - "powered": "false" - }, - "id": 981 - }, - { - "properties": { - "instrument": "banjo", - "note": "17", - "powered": "true" - }, - "id": 982 - }, - { - "properties": { - "instrument": "banjo", - "note": "17", - "powered": "false" - }, - "id": 983 - }, - { - "properties": { - "instrument": "banjo", - "note": "18", - "powered": "true" - }, - "id": 984 - }, - { - "properties": { - "instrument": "banjo", - "note": "18", - "powered": "false" - }, - "id": 985 - }, - { - "properties": { - "instrument": "banjo", - "note": "19", - "powered": "true" - }, - "id": 986 - }, - { - "properties": { - "instrument": "banjo", - "note": "19", - "powered": "false" - }, - "id": 987 - }, - { - "properties": { - "instrument": "banjo", - "note": "20", - "powered": "true" - }, - "id": 988 - }, - { - "properties": { - "instrument": "banjo", - "note": "20", - "powered": "false" - }, - "id": 989 - }, - { - "properties": { - "instrument": "banjo", - "note": "21", - "powered": "true" - }, - "id": 990 - }, - { - "properties": { - "instrument": "banjo", - "note": "21", - "powered": "false" - }, - "id": 991 - }, - { - "properties": { - "instrument": "banjo", - "note": "22", - "powered": "true" - }, - "id": 992 - }, - { - "properties": { - "instrument": "banjo", - "note": "22", - "powered": "false" - }, - "id": 993 - }, - { - "properties": { - "instrument": "banjo", - "note": "23", - "powered": "true" - }, - "id": 994 - }, - { - "properties": { - "instrument": "banjo", - "note": "23", - "powered": "false" - }, - "id": 995 - }, - { - "properties": { - "instrument": "banjo", - "note": "24", - "powered": "true" - }, - "id": 996 - }, - { - "properties": { - "instrument": "banjo", - "note": "24", - "powered": "false" - }, - "id": 997 - }, - { - "properties": { - "instrument": "pling", - "note": "0", - "powered": "true" - }, - "id": 998 - }, - { - "properties": { - "instrument": "pling", - "note": "0", - "powered": "false" - }, - "id": 999 - }, - { - "properties": { - "instrument": "pling", - "note": "1", - "powered": "true" - }, - "id": 1000 - }, - { - "properties": { - "instrument": "pling", - "note": "1", - "powered": "false" - }, - "id": 1001 - }, - { - "properties": { - "instrument": "pling", - "note": "2", - "powered": "true" - }, - "id": 1002 - }, - { - "properties": { - "instrument": "pling", - "note": "2", - "powered": "false" - }, - "id": 1003 - }, - { - "properties": { - "instrument": "pling", - "note": "3", - "powered": "true" - }, - "id": 1004 - }, - { - "properties": { - "instrument": "pling", - "note": "3", - "powered": "false" - }, - "id": 1005 - }, - { - "properties": { - "instrument": "pling", - "note": "4", - "powered": "true" - }, - "id": 1006 - }, - { - "properties": { - "instrument": "pling", - "note": "4", - "powered": "false" - }, - "id": 1007 - }, - { - "properties": { - "instrument": "pling", - "note": "5", - "powered": "true" - }, - "id": 1008 - }, - { - "properties": { - "instrument": "pling", - "note": "5", - "powered": "false" - }, - "id": 1009 - }, - { - "properties": { - "instrument": "pling", - "note": "6", - "powered": "true" - }, - "id": 1010 - }, - { - "properties": { - "instrument": "pling", - "note": "6", - "powered": "false" - }, - "id": 1011 - }, - { - "properties": { - "instrument": "pling", - "note": "7", - "powered": "true" - }, - "id": 1012 - }, - { - "properties": { - "instrument": "pling", - "note": "7", - "powered": "false" - }, - "id": 1013 - }, - { - "properties": { - "instrument": "pling", - "note": "8", - "powered": "true" - }, - "id": 1014 - }, - { - "properties": { - "instrument": "pling", - "note": "8", - "powered": "false" - }, - "id": 1015 - }, - { - "properties": { - "instrument": "pling", - "note": "9", - "powered": "true" - }, - "id": 1016 - }, - { - "properties": { - "instrument": "pling", - "note": "9", - "powered": "false" - }, - "id": 1017 - }, - { - "properties": { - "instrument": "pling", - "note": "10", - "powered": "true" - }, - "id": 1018 - }, - { - "properties": { - "instrument": "pling", - "note": "10", - "powered": "false" - }, - "id": 1019 - }, - { - "properties": { - "instrument": "pling", - "note": "11", - "powered": "true" - }, - "id": 1020 - }, - { - "properties": { - "instrument": "pling", - "note": "11", - "powered": "false" - }, - "id": 1021 - }, - { - "properties": { - "instrument": "pling", - "note": "12", - "powered": "true" - }, - "id": 1022 - }, - { - "properties": { - "instrument": "pling", - "note": "12", - "powered": "false" - }, - "id": 1023 - }, - { - "properties": { - "instrument": "pling", - "note": "13", - "powered": "true" - }, - "id": 1024 - }, - { - "properties": { - "instrument": "pling", - "note": "13", - "powered": "false" - }, - "id": 1025 - }, - { - "properties": { - "instrument": "pling", - "note": "14", - "powered": "true" - }, - "id": 1026 - }, - { - "properties": { - "instrument": "pling", - "note": "14", - "powered": "false" - }, - "id": 1027 - }, - { - "properties": { - "instrument": "pling", - "note": "15", - "powered": "true" - }, - "id": 1028 - }, - { - "properties": { - "instrument": "pling", - "note": "15", - "powered": "false" - }, - "id": 1029 - }, - { - "properties": { - "instrument": "pling", - "note": "16", - "powered": "true" - }, - "id": 1030 - }, - { - "properties": { - "instrument": "pling", - "note": "16", - "powered": "false" - }, - "id": 1031 - }, - { - "properties": { - "instrument": "pling", - "note": "17", - "powered": "true" - }, - "id": 1032 - }, - { - "properties": { - "instrument": "pling", - "note": "17", - "powered": "false" - }, - "id": 1033 - }, - { - "properties": { - "instrument": "pling", - "note": "18", - "powered": "true" - }, - "id": 1034 - }, - { - "properties": { - "instrument": "pling", - "note": "18", - "powered": "false" - }, - "id": 1035 - }, - { - "properties": { - "instrument": "pling", - "note": "19", - "powered": "true" - }, - "id": 1036 - }, - { - "properties": { - "instrument": "pling", - "note": "19", - "powered": "false" - }, - "id": 1037 - }, - { - "properties": { - "instrument": "pling", - "note": "20", - "powered": "true" - }, - "id": 1038 - }, - { - "properties": { - "instrument": "pling", - "note": "20", - "powered": "false" - }, - "id": 1039 - }, - { - "properties": { - "instrument": "pling", - "note": "21", - "powered": "true" - }, - "id": 1040 - }, - { - "properties": { - "instrument": "pling", - "note": "21", - "powered": "false" - }, - "id": 1041 - }, - { - "properties": { - "instrument": "pling", - "note": "22", - "powered": "true" - }, - "id": 1042 - }, - { - "properties": { - "instrument": "pling", - "note": "22", - "powered": "false" - }, - "id": 1043 - }, - { - "properties": { - "instrument": "pling", - "note": "23", - "powered": "true" - }, - "id": 1044 - }, - { - "properties": { - "instrument": "pling", - "note": "23", - "powered": "false" - }, - "id": 1045 - }, - { - "properties": { - "instrument": "pling", - "note": "24", - "powered": "true" - }, - "id": 1046 - }, - { - "properties": { - "instrument": "pling", - "note": "24", - "powered": "false" - }, - "id": 1047 - } - ] - }, - "minecraft:white_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1048 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1049 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1050 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1051, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1052 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1053 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1054 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1055 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1056 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1057 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1058 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1059 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1060 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1061 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1062 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1063 - } - ] - }, - "minecraft:orange_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1064 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1065 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1066 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1067, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1068 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1069 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1070 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1071 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1072 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1073 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1074 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1075 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1076 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1077 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1078 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1079 - } - ] - }, - "minecraft:magenta_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1080 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1081 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1082 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1083, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1084 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1085 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1086 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1087 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1088 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1089 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1090 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1091 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1092 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1093 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1094 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1095 - } - ] - }, - "minecraft:light_blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1096 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1097 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1098 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1099, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1100 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1101 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1102 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1103 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1104 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1105 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1106 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1107 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1108 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1109 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1110 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1111 - } - ] - }, - "minecraft:yellow_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1112 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1113 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1114 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1115, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1116 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1117 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1118 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1119 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1120 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1121 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1122 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1123 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1124 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1125 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1126 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1127 - } - ] - }, - "minecraft:lime_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1128 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1129 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1130 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1131, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1132 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1133 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1134 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1135 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1136 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1137 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1138 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1139 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1140 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1141 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1142 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1143 - } - ] - }, - "minecraft:pink_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1144 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1145 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1146 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1147, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1148 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1149 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1150 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1151 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1152 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1153 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1154 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1155 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1156 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1157 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1158 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1159 - } - ] - }, - "minecraft:gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1160 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1161 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1162 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1163, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1164 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1165 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1166 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1167 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1168 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1169 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1170 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1171 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1172 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1173 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1174 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1175 - } - ] - }, - "minecraft:light_gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1176 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1177 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1178 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1179, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1180 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1181 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1182 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1183 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1184 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1185 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1186 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1187 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1188 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1189 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1190 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1191 - } - ] - }, - "minecraft:cyan_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1192 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1193 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1194 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1195, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1196 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1197 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1198 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1199 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1200 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1201 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1202 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1203 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1204 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1205 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1206 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1207 - } - ] - }, - "minecraft:purple_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1208 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1209 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1210 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1211, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1212 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1213 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1214 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1215 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1216 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1217 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1218 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1219 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1220 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1221 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1222 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1223 - } - ] - }, - "minecraft:blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1224 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1225 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1226 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1227, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1228 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1229 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1230 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1231 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1232 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1233 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1234 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1235 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1236 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1237 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1238 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1239 - } - ] - }, - "minecraft:brown_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1240 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1241 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1242 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1243, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1244 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1245 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1246 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1247 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1248 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1249 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1250 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1251 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1252 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1253 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1254 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1255 - } - ] - }, - "minecraft:green_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1256 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1257 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1258 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1259, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1260 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1261 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1262 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1263 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1264 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1265 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1266 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1267 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1268 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1269 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1270 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1271 - } - ] - }, - "minecraft:red_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1272 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1273 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1274 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1275, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1276 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1277 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1278 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1279 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1280 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1281 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1282 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1283 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1284 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1285 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1286 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1287 - } - ] - }, - "minecraft:black_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1288 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1289 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1290 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1291, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1292 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1293 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1294 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1295 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1296 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1297 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1298 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1299 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1300 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1301 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1302 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1303 - } - ] - }, - "minecraft:powered_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - "states": [ - { - "properties": { - "powered": "true", - "shape": "north_south" - }, - "id": 1304 - }, - { - "properties": { - "powered": "true", - "shape": "east_west" - }, - "id": 1305 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east" - }, - "id": 1306 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west" - }, - "id": 1307 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north" - }, - "id": 1308 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south" - }, - "id": 1309 - }, - { - "properties": { - "powered": "false", - "shape": "north_south" - }, - "id": 1310, - "default": true - }, - { - "properties": { - "powered": "false", - "shape": "east_west" - }, - "id": 1311 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east" - }, - "id": 1312 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west" - }, - "id": 1313 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north" - }, - "id": 1314 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south" - }, - "id": 1315 - } - ] - }, - "minecraft:detector_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - "states": [ - { - "properties": { - "powered": "true", - "shape": "north_south" - }, - "id": 1316 - }, - { - "properties": { - "powered": "true", - "shape": "east_west" - }, - "id": 1317 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east" - }, - "id": 1318 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west" - }, - "id": 1319 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north" - }, - "id": 1320 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south" - }, - "id": 1321 - }, - { - "properties": { - "powered": "false", - "shape": "north_south" - }, - "id": 1322, - "default": true - }, - { - "properties": { - "powered": "false", - "shape": "east_west" - }, - "id": 1323 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east" - }, - "id": 1324 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west" - }, - "id": 1325 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north" - }, - "id": 1326 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south" - }, - "id": 1327 - } - ] - }, - "minecraft:sticky_piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "extended": "true", - "facing": "north" - }, - "id": 1328 - }, - { - "properties": { - "extended": "true", - "facing": "east" - }, - "id": 1329 - }, - { - "properties": { - "extended": "true", - "facing": "south" - }, - "id": 1330 - }, - { - "properties": { - "extended": "true", - "facing": "west" - }, - "id": 1331 - }, - { - "properties": { - "extended": "true", - "facing": "up" - }, - "id": 1332 - }, - { - "properties": { - "extended": "true", - "facing": "down" - }, - "id": 1333 - }, - { - "properties": { - "extended": "false", - "facing": "north" - }, - "id": 1334, - "default": true - }, - { - "properties": { - "extended": "false", - "facing": "east" - }, - "id": 1335 - }, - { - "properties": { - "extended": "false", - "facing": "south" - }, - "id": 1336 - }, - { - "properties": { - "extended": "false", - "facing": "west" - }, - "id": 1337 - }, - { - "properties": { - "extended": "false", - "facing": "up" - }, - "id": 1338 - }, - { - "properties": { - "extended": "false", - "facing": "down" - }, - "id": 1339 - } - ] - }, - "minecraft:cobweb": { - "states": [ - { - "id": 1340, - "default": true - } - ] - }, - "minecraft:grass": { - "states": [ - { - "id": 1341, - "default": true - } - ] - }, - "minecraft:fern": { - "states": [ - { - "id": 1342, - "default": true - } - ] - }, - "minecraft:dead_bush": { - "states": [ - { - "id": 1343, - "default": true - } - ] - }, - "minecraft:seagrass": { - "states": [ - { - "id": 1344, - "default": true - } - ] - }, - "minecraft:tall_seagrass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 1345 - }, - { - "properties": { - "half": "lower" - }, - "id": 1346, - "default": true - } - ] - }, - "minecraft:piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "extended": "true", - "facing": "north" - }, - "id": 1347 - }, - { - "properties": { - "extended": "true", - "facing": "east" - }, - "id": 1348 - }, - { - "properties": { - "extended": "true", - "facing": "south" - }, - "id": 1349 - }, - { - "properties": { - "extended": "true", - "facing": "west" - }, - "id": 1350 - }, - { - "properties": { - "extended": "true", - "facing": "up" - }, - "id": 1351 - }, - { - "properties": { - "extended": "true", - "facing": "down" - }, - "id": 1352 - }, - { - "properties": { - "extended": "false", - "facing": "north" - }, - "id": 1353, - "default": true - }, - { - "properties": { - "extended": "false", - "facing": "east" - }, - "id": 1354 - }, - { - "properties": { - "extended": "false", - "facing": "south" - }, - "id": 1355 - }, - { - "properties": { - "extended": "false", - "facing": "west" - }, - "id": 1356 - }, - { - "properties": { - "extended": "false", - "facing": "up" - }, - "id": 1357 - }, - { - "properties": { - "extended": "false", - "facing": "down" - }, - "id": 1358 - } - ] - }, - "minecraft:piston_head": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "short": [ - "true", - "false" - ], - "type": [ - "normal", - "sticky" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "short": "true", - "type": "normal" - }, - "id": 1359 - }, - { - "properties": { - "facing": "north", - "short": "true", - "type": "sticky" - }, - "id": 1360 - }, - { - "properties": { - "facing": "north", - "short": "false", - "type": "normal" - }, - "id": 1361, - "default": true - }, - { - "properties": { - "facing": "north", - "short": "false", - "type": "sticky" - }, - "id": 1362 - }, - { - "properties": { - "facing": "east", - "short": "true", - "type": "normal" - }, - "id": 1363 - }, - { - "properties": { - "facing": "east", - "short": "true", - "type": "sticky" - }, - "id": 1364 - }, - { - "properties": { - "facing": "east", - "short": "false", - "type": "normal" - }, - "id": 1365 - }, - { - "properties": { - "facing": "east", - "short": "false", - "type": "sticky" - }, - "id": 1366 - }, - { - "properties": { - "facing": "south", - "short": "true", - "type": "normal" - }, - "id": 1367 - }, - { - "properties": { - "facing": "south", - "short": "true", - "type": "sticky" - }, - "id": 1368 - }, - { - "properties": { - "facing": "south", - "short": "false", - "type": "normal" - }, - "id": 1369 - }, - { - "properties": { - "facing": "south", - "short": "false", - "type": "sticky" - }, - "id": 1370 - }, - { - "properties": { - "facing": "west", - "short": "true", - "type": "normal" - }, - "id": 1371 - }, - { - "properties": { - "facing": "west", - "short": "true", - "type": "sticky" - }, - "id": 1372 - }, - { - "properties": { - "facing": "west", - "short": "false", - "type": "normal" - }, - "id": 1373 - }, - { - "properties": { - "facing": "west", - "short": "false", - "type": "sticky" - }, - "id": 1374 - }, - { - "properties": { - "facing": "up", - "short": "true", - "type": "normal" - }, - "id": 1375 - }, - { - "properties": { - "facing": "up", - "short": "true", - "type": "sticky" - }, - "id": 1376 - }, - { - "properties": { - "facing": "up", - "short": "false", - "type": "normal" - }, - "id": 1377 - }, - { - "properties": { - "facing": "up", - "short": "false", - "type": "sticky" - }, - "id": 1378 - }, - { - "properties": { - "facing": "down", - "short": "true", - "type": "normal" - }, - "id": 1379 - }, - { - "properties": { - "facing": "down", - "short": "true", - "type": "sticky" - }, - "id": 1380 - }, - { - "properties": { - "facing": "down", - "short": "false", - "type": "normal" - }, - "id": 1381 - }, - { - "properties": { - "facing": "down", - "short": "false", - "type": "sticky" - }, - "id": 1382 - } - ] - }, - "minecraft:white_wool": { - "states": [ - { - "id": 1383, - "default": true - } - ] - }, - "minecraft:orange_wool": { - "states": [ - { - "id": 1384, - "default": true - } - ] - }, - "minecraft:magenta_wool": { - "states": [ - { - "id": 1385, - "default": true - } - ] - }, - "minecraft:light_blue_wool": { - "states": [ - { - "id": 1386, - "default": true - } - ] - }, - "minecraft:yellow_wool": { - "states": [ - { - "id": 1387, - "default": true - } - ] - }, - "minecraft:lime_wool": { - "states": [ - { - "id": 1388, - "default": true - } - ] - }, - "minecraft:pink_wool": { - "states": [ - { - "id": 1389, - "default": true - } - ] - }, - "minecraft:gray_wool": { - "states": [ - { - "id": 1390, - "default": true - } - ] - }, - "minecraft:light_gray_wool": { - "states": [ - { - "id": 1391, - "default": true - } - ] - }, - "minecraft:cyan_wool": { - "states": [ - { - "id": 1392, - "default": true - } - ] - }, - "minecraft:purple_wool": { - "states": [ - { - "id": 1393, - "default": true - } - ] - }, - "minecraft:blue_wool": { - "states": [ - { - "id": 1394, - "default": true - } - ] - }, - "minecraft:brown_wool": { - "states": [ - { - "id": 1395, - "default": true - } - ] - }, - "minecraft:green_wool": { - "states": [ - { - "id": 1396, - "default": true - } - ] - }, - "minecraft:red_wool": { - "states": [ - { - "id": 1397, - "default": true - } - ] - }, - "minecraft:black_wool": { - "states": [ - { - "id": 1398, - "default": true - } - ] - }, - "minecraft:moving_piston": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "type": [ - "normal", - "sticky" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "type": "normal" - }, - "id": 1399, - "default": true - }, - { - "properties": { - "facing": "north", - "type": "sticky" - }, - "id": 1400 - }, - { - "properties": { - "facing": "east", - "type": "normal" - }, - "id": 1401 - }, - { - "properties": { - "facing": "east", - "type": "sticky" - }, - "id": 1402 - }, - { - "properties": { - "facing": "south", - "type": "normal" - }, - "id": 1403 - }, - { - "properties": { - "facing": "south", - "type": "sticky" - }, - "id": 1404 - }, - { - "properties": { - "facing": "west", - "type": "normal" - }, - "id": 1405 - }, - { - "properties": { - "facing": "west", - "type": "sticky" - }, - "id": 1406 - }, - { - "properties": { - "facing": "up", - "type": "normal" - }, - "id": 1407 - }, - { - "properties": { - "facing": "up", - "type": "sticky" - }, - "id": 1408 - }, - { - "properties": { - "facing": "down", - "type": "normal" - }, - "id": 1409 - }, - { - "properties": { - "facing": "down", - "type": "sticky" - }, - "id": 1410 - } - ] - }, - "minecraft:dandelion": { - "states": [ - { - "id": 1411, - "default": true - } - ] - }, - "minecraft:poppy": { - "states": [ - { - "id": 1412, - "default": true - } - ] - }, - "minecraft:blue_orchid": { - "states": [ - { - "id": 1413, - "default": true - } - ] - }, - "minecraft:allium": { - "states": [ - { - "id": 1414, - "default": true - } - ] - }, - "minecraft:azure_bluet": { - "states": [ - { - "id": 1415, - "default": true - } - ] - }, - "minecraft:red_tulip": { - "states": [ - { - "id": 1416, - "default": true - } - ] - }, - "minecraft:orange_tulip": { - "states": [ - { - "id": 1417, - "default": true - } - ] - }, - "minecraft:white_tulip": { - "states": [ - { - "id": 1418, - "default": true - } - ] - }, - "minecraft:pink_tulip": { - "states": [ - { - "id": 1419, - "default": true - } - ] - }, - "minecraft:oxeye_daisy": { - "states": [ - { - "id": 1420, - "default": true - } - ] - }, - "minecraft:cornflower": { - "states": [ - { - "id": 1421, - "default": true - } - ] - }, - "minecraft:wither_rose": { - "states": [ - { - "id": 1422, - "default": true - } - ] - }, - "minecraft:lily_of_the_valley": { - "states": [ - { - "id": 1423, - "default": true - } - ] - }, - "minecraft:brown_mushroom": { - "states": [ - { - "id": 1424, - "default": true - } - ] - }, - "minecraft:red_mushroom": { - "states": [ - { - "id": 1425, - "default": true - } - ] - }, - "minecraft:gold_block": { - "states": [ - { - "id": 1426, - "default": true - } - ] - }, - "minecraft:iron_block": { - "states": [ - { - "id": 1427, - "default": true - } - ] - }, - "minecraft:bricks": { - "states": [ - { - "id": 1428, - "default": true - } - ] - }, - "minecraft:tnt": { - "properties": { - "unstable": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "unstable": "true" - }, - "id": 1429 - }, - { - "properties": { - "unstable": "false" - }, - "id": 1430, - "default": true - } - ] - }, - "minecraft:bookshelf": { - "states": [ - { - "id": 1431, - "default": true - } - ] - }, - "minecraft:mossy_cobblestone": { - "states": [ - { - "id": 1432, - "default": true - } - ] - }, - "minecraft:obsidian": { - "states": [ - { - "id": 1433, - "default": true - } - ] - }, - "minecraft:torch": { - "states": [ - { - "id": 1434, - "default": true - } - ] - }, - "minecraft:wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 1435, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 1436 - }, - { - "properties": { - "facing": "west" - }, - "id": 1437 - }, - { - "properties": { - "facing": "east" - }, - "id": 1438 - } - ] - }, - "minecraft:fire": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1439 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1440 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1441 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1442 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1443 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1444 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1445 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1446 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1447 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1448 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1449 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1450 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1451 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1452 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1453 - }, - { - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1454 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1455 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1456 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1457 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1458 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1459 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1460 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1461 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1462 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1463 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1464 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1465 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1466 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1467 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1468 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1469 - }, - { - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1470, - "default": true - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1471 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1472 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1473 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1474 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1475 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1476 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1477 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1478 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1479 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1480 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1481 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1482 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1483 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1484 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1485 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1486 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1487 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1488 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1489 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1490 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1491 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1492 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1493 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1494 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1495 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1496 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1497 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1498 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1499 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1500 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1501 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1502 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1503 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1504 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1505 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1506 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1507 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1508 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1509 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1510 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1511 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1512 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1513 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1514 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1515 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1516 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1517 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1518 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1519 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1520 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1521 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1522 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1523 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1524 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1525 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1526 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1527 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1528 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1529 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1530 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1531 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1532 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1533 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1534 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1535 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1536 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1537 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1538 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1539 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1540 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1541 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1542 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1543 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1544 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1545 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1546 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1547 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1548 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1549 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1550 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1551 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1552 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1553 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1554 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1555 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1556 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1557 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1558 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1559 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1560 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1561 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1562 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1563 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1564 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1565 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1566 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1567 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1568 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1569 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1570 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1571 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1572 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1573 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1574 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1575 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1576 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1577 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1578 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1579 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1580 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1581 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1582 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1583 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1584 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1585 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1586 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1587 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1588 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1589 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1590 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1591 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1592 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1593 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1594 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1595 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1596 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1597 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1598 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1599 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1600 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1601 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1602 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1603 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1604 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1605 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1606 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1607 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1608 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1609 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1610 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1611 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1612 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1613 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1614 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1615 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1616 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1617 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1618 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1619 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1620 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1621 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1622 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1623 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1624 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1625 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1626 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1627 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1628 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1629 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1630 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1631 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1632 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1633 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1634 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1635 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1636 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1637 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1638 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1639 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1640 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1641 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1642 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1643 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1644 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1645 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1646 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1647 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1648 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1649 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1650 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1651 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1652 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1653 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1654 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1655 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1656 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1657 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1658 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1659 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1660 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1661 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1662 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1663 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1664 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1665 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1666 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1667 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1668 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1669 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1670 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1671 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1672 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1673 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1674 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1675 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1676 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1677 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1678 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1679 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1680 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1681 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1682 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1683 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1684 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1685 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1686 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1687 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1688 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1689 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1690 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1691 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1692 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1693 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1694 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1695 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1696 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1697 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1698 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1699 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1700 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1701 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1702 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1703 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1704 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1705 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1706 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1707 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1708 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1709 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1710 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1711 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1712 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1713 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1714 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1715 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1716 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1717 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1718 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1719 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1720 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1721 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1722 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1723 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1724 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1725 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1726 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1727 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1728 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1729 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1730 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1731 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1732 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1733 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1734 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1735 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1736 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1737 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1738 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1739 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1740 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1741 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1742 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1743 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1744 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1745 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1746 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1747 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1748 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1749 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1750 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1751 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1752 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1753 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1754 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1755 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1756 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1757 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1758 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1759 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1760 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1761 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1762 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1763 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1764 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1765 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1766 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1767 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1768 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1769 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1770 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1771 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1772 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1773 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1774 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1775 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1776 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1777 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1778 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1779 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1780 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1781 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1782 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1783 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1784 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1785 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1786 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1787 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1788 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1789 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1790 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1791 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1792 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1793 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1794 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1795 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1796 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1797 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1798 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1799 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1800 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1801 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1802 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1803 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1804 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1805 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1806 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1807 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1808 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1809 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1810 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1811 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1812 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1813 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1814 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1815 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1816 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1817 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1818 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1819 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1820 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1821 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1822 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1823 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1824 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1825 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1826 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1827 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1828 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1829 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1830 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1831 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1832 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1833 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1834 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1835 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1836 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1837 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1838 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1839 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1840 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1841 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1842 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1843 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1844 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1845 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1846 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1847 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1848 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1849 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1850 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1851 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1852 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1853 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1854 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1855 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1856 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1857 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1858 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1859 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1860 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1861 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1862 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1863 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1864 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1865 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1866 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1867 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1868 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1869 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1870 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1871 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1872 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1873 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1874 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1875 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1876 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1877 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1878 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1879 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1880 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1881 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1882 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1883 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1884 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1885 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1886 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1887 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1888 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1889 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1890 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1891 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1892 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1893 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1894 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1895 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1896 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1897 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1898 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1899 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1900 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1901 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1902 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1903 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1904 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1905 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1906 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1907 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1908 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1909 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1910 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1911 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1912 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1913 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1914 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1915 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1916 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1917 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1918 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1919 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1920 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1921 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1922 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1923 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1924 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1925 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1926 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1927 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1928 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1929 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1930 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1931 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1932 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1933 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1934 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1935 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1936 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1937 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1938 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1939 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1940 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1941 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1942 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1943 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1944 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1945 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1946 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1947 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1948 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1949 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1950 - } - ] - }, - "minecraft:spawner": { - "states": [ - { - "id": 1951, - "default": true - } - ] - }, - "minecraft:oak_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 1952 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 1953 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 1954 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 1955 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 1956 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 1957 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 1958 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 1959 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 1960 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 1961 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 1962 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 1963, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 1964 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 1965 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 1966 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 1967 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 1968 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 1969 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 1970 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 1971 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 1972 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 1973 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 1974 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 1975 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 1976 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 1977 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 1978 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 1979 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 1980 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 1981 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 1982 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 1983 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 1984 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 1985 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 1986 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 1987 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 1988 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 1989 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 1990 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 1991 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 1992 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 1993 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 1994 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 1995 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 1996 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 1997 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 1998 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 1999 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 2000 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 2001 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 2002 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 2003 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 2004 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 2005 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 2006 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 2007 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 2008 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 2009 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 2010 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 2011 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 2012 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 2013 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 2014 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 2015 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 2016 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 2017 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 2018 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 2019 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 2020 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 2021 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 2022 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 2023 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 2024 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 2025 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 2026 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 2027 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 2028 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 2029 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 2030 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 2031 - } - ] - }, - "minecraft:chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "type": [ - "single", - "left", - "right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "true" - }, - "id": 2032 - }, - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "false" - }, - "id": 2033, - "default": true - }, - { - "properties": { - "facing": "north", - "type": "left", - "waterlogged": "true" - }, - "id": 2034 - }, - { - "properties": { - "facing": "north", - "type": "left", - "waterlogged": "false" - }, - "id": 2035 - }, - { - "properties": { - "facing": "north", - "type": "right", - "waterlogged": "true" - }, - "id": 2036 - }, - { - "properties": { - "facing": "north", - "type": "right", - "waterlogged": "false" - }, - "id": 2037 - }, - { - "properties": { - "facing": "south", - "type": "single", - "waterlogged": "true" - }, - "id": 2038 - }, - { - "properties": { - "facing": "south", - "type": "single", - "waterlogged": "false" - }, - "id": 2039 - }, - { - "properties": { - "facing": "south", - "type": "left", - "waterlogged": "true" - }, - "id": 2040 - }, - { - "properties": { - "facing": "south", - "type": "left", - "waterlogged": "false" - }, - "id": 2041 - }, - { - "properties": { - "facing": "south", - "type": "right", - "waterlogged": "true" - }, - "id": 2042 - }, - { - "properties": { - "facing": "south", - "type": "right", - "waterlogged": "false" - }, - "id": 2043 - }, - { - "properties": { - "facing": "west", - "type": "single", - "waterlogged": "true" - }, - "id": 2044 - }, - { - "properties": { - "facing": "west", - "type": "single", - "waterlogged": "false" - }, - "id": 2045 - }, - { - "properties": { - "facing": "west", - "type": "left", - "waterlogged": "true" - }, - "id": 2046 - }, - { - "properties": { - "facing": "west", - "type": "left", - "waterlogged": "false" - }, - "id": 2047 - }, - { - "properties": { - "facing": "west", - "type": "right", - "waterlogged": "true" - }, - "id": 2048 - }, - { - "properties": { - "facing": "west", - "type": "right", - "waterlogged": "false" - }, - "id": 2049 - }, - { - "properties": { - "facing": "east", - "type": "single", - "waterlogged": "true" - }, - "id": 2050 - }, - { - "properties": { - "facing": "east", - "type": "single", - "waterlogged": "false" - }, - "id": 2051 - }, - { - "properties": { - "facing": "east", - "type": "left", - "waterlogged": "true" - }, - "id": 2052 - }, - { - "properties": { - "facing": "east", - "type": "left", - "waterlogged": "false" - }, - "id": 2053 - }, - { - "properties": { - "facing": "east", - "type": "right", - "waterlogged": "true" - }, - "id": 2054 - }, - { - "properties": { - "facing": "east", - "type": "right", - "waterlogged": "false" - }, - "id": 2055 - } - ] - }, - "minecraft:redstone_wire": { - "properties": { - "east": [ - "up", - "side", - "none" - ], - "north": [ - "up", - "side", - "none" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "south": [ - "up", - "side", - "none" - ], - "west": [ - "up", - "side", - "none" - ] - }, - "states": [ - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2056 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2057 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2058 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2059 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2060 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2061 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2062 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2063 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2064 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2065 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2066 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2067 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2068 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2069 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2070 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2071 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2072 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2073 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2074 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2075 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2076 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2077 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2078 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2079 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2080 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2081 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2082 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2083 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2084 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2085 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2086 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2087 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2088 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2089 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2090 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2091 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2092 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2093 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2094 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2095 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2096 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2097 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2098 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2099 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2100 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2101 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2102 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2103 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2104 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2105 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2106 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2107 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2108 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2109 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2110 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2111 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2112 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2113 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2114 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2115 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2116 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2117 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2118 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2119 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2120 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2121 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2122 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2123 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2124 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2125 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2126 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2127 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2128 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2129 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2130 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2131 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2132 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2133 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2134 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2135 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2136 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2137 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2138 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2139 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2140 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2141 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2142 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2143 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2144 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2145 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2146 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2147 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2148 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2149 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2150 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2151 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2152 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2153 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2154 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2155 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2156 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2157 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2158 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2159 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2160 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2161 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2162 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2163 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2164 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2165 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2166 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2167 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2168 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2169 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2170 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2171 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2172 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2173 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2174 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2175 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2176 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2177 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2178 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2179 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2180 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2181 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2182 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2183 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2184 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2185 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2186 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2187 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2188 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2189 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2190 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2191 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2192 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2193 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2194 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2195 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2196 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2197 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2198 - }, - { - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2199 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2200 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2201 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2202 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2203 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2204 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2205 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2206 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2207 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2208 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2209 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2210 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2211 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2212 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2213 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2214 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2215 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2216 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2217 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2218 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2219 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2220 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2221 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2222 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2223 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2224 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2225 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2226 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2227 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2228 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2229 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2230 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2231 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2232 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2233 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2234 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2235 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2236 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2237 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2238 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2239 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2240 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2241 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2242 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2243 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2244 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2245 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2246 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2247 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2248 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2249 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2250 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2251 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2252 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2253 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2254 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2255 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2256 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2257 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2258 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2259 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2260 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2261 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2262 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2263 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2264 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2265 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2266 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2267 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2268 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2269 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2270 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2271 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2272 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2273 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2274 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2275 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2276 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2277 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2278 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2279 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2280 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2281 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2282 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2283 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2284 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2285 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2286 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2287 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2288 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2289 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2290 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2291 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2292 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2293 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2294 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2295 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2296 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2297 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2298 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2299 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2300 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2301 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2302 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2303 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2304 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2305 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2306 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2307 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2308 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2309 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2310 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2311 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2312 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2313 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2314 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2315 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2316 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2317 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2318 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2319 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2320 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2321 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2322 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2323 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2324 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2325 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2326 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2327 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2328 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2329 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2330 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2331 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2332 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2333 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2334 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2335 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2336 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2337 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2338 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2339 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2340 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2341 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2342 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2343 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2344 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2345 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2346 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2347 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2348 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2349 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2350 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2351 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2352 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2353 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2354 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2355 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2356 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2357 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2358 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2359 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2360 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2361 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2362 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2363 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2364 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2365 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2366 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2367 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2368 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2369 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2370 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2371 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2372 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2373 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2374 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2375 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2376 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2377 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2378 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2379 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2380 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2381 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2382 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2383 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2384 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2385 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2386 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2387 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2388 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2389 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2390 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2391 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2392 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2393 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2394 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2395 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2396 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2397 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2398 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2399 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2400 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2401 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2402 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2403 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2404 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2405 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2406 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2407 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2408 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2409 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2410 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2411 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2412 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2413 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2414 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2415 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2416 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2417 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2418 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2419 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2420 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2421 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2422 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2423 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2424 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2425 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2426 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2427 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2428 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2429 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2430 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2431 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2432 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2433 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2434 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2435 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2436 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2437 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2438 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2439 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2440 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2441 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2442 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2443 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2444 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2445 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2446 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2447 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2448 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2449 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2450 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2451 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2452 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2453 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2454 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2455 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2456 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2457 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2458 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2459 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2460 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2461 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2462 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2463 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2464 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2465 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2466 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2467 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2468 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2469 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2470 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2471 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2472 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2473 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2474 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2475 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2476 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2477 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2478 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2479 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2480 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2481 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2482 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2483 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2484 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2485 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2486 - }, - { - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2487 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2488 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2489 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2490 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2491 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2492 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2493 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2494 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2495 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2496 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2497 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2498 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2499 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2500 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2501 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2502 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2503 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2504 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2505 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2506 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2507 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2508 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2509 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2510 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2511 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2512 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2513 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2514 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2515 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2516 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2517 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2518 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2519 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2520 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2521 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2522 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2523 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2524 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2525 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2526 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2527 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2528 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2529 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2530 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2531 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2532 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2533 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2534 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2535 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2536 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2537 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2538 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2539 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2540 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2541 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2542 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2543 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2544 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2545 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2546 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2547 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2548 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2549 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2550 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2551 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2552 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2553 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2554 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2555 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2556 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2557 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2558 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2559 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2560 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2561 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2562 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2563 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2564 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2565 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2566 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2567 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2568 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2569 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2570 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2571 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2572 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2573 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2574 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2575 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2576 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2577 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2578 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2579 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2580 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2581 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2582 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2583 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2584 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2585 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2586 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2587 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2588 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2589 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2590 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2591 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2592 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2593 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2594 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2595 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2596 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2597 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2598 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2599 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2600 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2601 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2602 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2603 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2604 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2605 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2606 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2607 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2608 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2609 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2610 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2611 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2612 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2613 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2614 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2615 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2616 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2617 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2618 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2619 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2620 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2621 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2622 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2623 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2624 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2625 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2626 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2627 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2628 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2629 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2630 - }, - { - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2631 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2632 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2633 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2634 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2635 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2636 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2637 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2638 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2639 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2640 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2641 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2642 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2643 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2644 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2645 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2646 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2647 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2648 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2649 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2650 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2651 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2652 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2653 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2654 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2655 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2656 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2657 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2658 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2659 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2660 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2661 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2662 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2663 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2664 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2665 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2666 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2667 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2668 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2669 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2670 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2671 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2672 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2673 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2674 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2675 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2676 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2677 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2678 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2679 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2680 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2681 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2682 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2683 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2684 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2685 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2686 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2687 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2688 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2689 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2690 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2691 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2692 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2693 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2694 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2695 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2696 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2697 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2698 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2699 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2700 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2701 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2702 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2703 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2704 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2705 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2706 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2707 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2708 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2709 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2710 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2711 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2712 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2713 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2714 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2715 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2716 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2717 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2718 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2719 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2720 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2721 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2722 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2723 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2724 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2725 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2726 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2727 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2728 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2729 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2730 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2731 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2732 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2733 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2734 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2735 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2736 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2737 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2738 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2739 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2740 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2741 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2742 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2743 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2744 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2745 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2746 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2747 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2748 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2749 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2750 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2751 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2752 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2753 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2754 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2755 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2756 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2757 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2758 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2759 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2760 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2761 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2762 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2763 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2764 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2765 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2766 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2767 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2768 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2769 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2770 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2771 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2772 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2773 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2774 - }, - { - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2775 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2776 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2777 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2778 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2779 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2780 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2781 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2782 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2783 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2784 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2785 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2786 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2787 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2788 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2789 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2790 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2791 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2792 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2793 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2794 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2795 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2796 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2797 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2798 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2799 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2800 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2801 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2802 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2803 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2804 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2805 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2806 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2807 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2808 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2809 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2810 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2811 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2812 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2813 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2814 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2815 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2816 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2817 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2818 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2819 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2820 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2821 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2822 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2823 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2824 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2825 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2826 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2827 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2828 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2829 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2830 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2831 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2832 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2833 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2834 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2835 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2836 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2837 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2838 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2839 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2840 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2841 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2842 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2843 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2844 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2845 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2846 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2847 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2848 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2849 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2850 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2851 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2852 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2853 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2854 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2855 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2856 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2857 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2858 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2859 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2860 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2861 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2862 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2863 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2864 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2865 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2866 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2867 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2868 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2869 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2870 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2871 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2872 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2873 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2874 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2875 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2876 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2877 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2878 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2879 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2880 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2881 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2882 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2883 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2884 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2885 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2886 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2887 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2888 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2889 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2890 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2891 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2892 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2893 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2894 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2895 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2896 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2897 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2898 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2899 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2900 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2901 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2902 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2903 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2904 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2905 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2906 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2907 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2908 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2909 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2910 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2911 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2912 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2913 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2914 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2915 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2916 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2917 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2918 - }, - { - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2919 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2920 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2921 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2922 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2923 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2924 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2925 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2926 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2927 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2928 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2929 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2930 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2931 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2932 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2933 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2934 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2935 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2936 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2937 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2938 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2939 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2940 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2941 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2942 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2943 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2944 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2945 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2946 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2947 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2948 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2949 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2950 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2951 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2952 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2953 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2954 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2955 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2956 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2957 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2958 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2959 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2960 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2961 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2962 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2963 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2964 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2965 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2966 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2967 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2968 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2969 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2970 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2971 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2972 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2973 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2974 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2975 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2976 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2977 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2978 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2979 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2980 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2981 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2982 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2983 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2984 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2985 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2986 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2987 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2988 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2989 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2990 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2991 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2992 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2993 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2994 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2995 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2996 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2997 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2998 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2999 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 3000 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3001 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3002 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 3003 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3004 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3005 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 3006 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3007 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3008 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 3009 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3010 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3011 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 3012 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3013 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3014 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 3015 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3016 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3017 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 3018 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3019 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3020 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 3021 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3022 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3023 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 3024 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 3025 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 3026 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 3027 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3028 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3029 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 3030 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3031 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3032 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 3033 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3034 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3035 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 3036 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3037 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3038 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 3039 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3040 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3041 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 3042 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3043 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3044 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 3045 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3046 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3047 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 3048 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3049 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3050 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 3051 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3052 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3053 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 3054 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3055 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3056 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 3057 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3058 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3059 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 3060 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3061 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3062 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 3063 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 3064 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 3065 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 3066 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 3067 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 3068 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 3069 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 3070 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 3071 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 3072 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 3073 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 3074 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 3075 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 3076 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 3077 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 3078 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 3079 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 3080 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 3081 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 3082 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 3083 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 3084 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 3085 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3086 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 3087 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3088 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3089 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 3090 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3091 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3092 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 3093 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3094 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3095 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 3096 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 3097 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 3098 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 3099 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3100 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3101 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 3102 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3103 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3104 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 3105 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3106 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3107 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 3108 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3109 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3110 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 3111 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3112 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3113 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 3114 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3115 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3116 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 3117 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3118 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3119 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 3120 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3121 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3122 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 3123 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3124 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3125 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 3126 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3127 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3128 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 3129 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3130 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3131 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 3132 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 3133 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 3134 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 3135 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3136 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3137 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 3138 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3139 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3140 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 3141 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 3142 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 3143 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 3144 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3145 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3146 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 3147 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3148 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3149 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 3150 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3151 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3152 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 3153 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3154 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3155 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 3156 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3157 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3158 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 3159 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3160 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3161 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 3162 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3163 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3164 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 3165 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3166 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3167 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 3168 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 3169 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 3170 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 3171 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3172 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3173 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 3174 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3175 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3176 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 3177 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3178 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3179 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 3180 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3181 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3182 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 3183 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3184 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3185 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 3186 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3187 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3188 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 3189 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3190 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3191 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 3192 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3193 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3194 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 3195 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3196 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3197 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 3198 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3199 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3200 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 3201 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3202 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3203 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 3204 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3205 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3206 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 3207 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 3208 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 3209 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 3210 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 3211 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 3212 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 3213 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 3214 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 3215 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 3216, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 3217 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 3218 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 3219 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 3220 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 3221 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 3222 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 3223 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 3224 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 3225 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 3226 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 3227 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 3228 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 3229 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3230 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 3231 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3232 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3233 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 3234 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3235 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3236 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 3237 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3238 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3239 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 3240 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 3241 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 3242 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 3243 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3244 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3245 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 3246 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3247 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3248 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 3249 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3250 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3251 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 3252 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3253 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3254 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 3255 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3256 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3257 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 3258 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3259 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3260 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 3261 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3262 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3263 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 3264 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3265 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3266 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 3267 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3268 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3269 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 3270 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3271 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3272 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 3273 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3274 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3275 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 3276 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 3277 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 3278 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 3279 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3280 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3281 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 3282 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3283 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3284 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 3285 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 3286 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 3287 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 3288 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3289 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3290 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 3291 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3292 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3293 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 3294 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3295 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3296 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 3297 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3298 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3299 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 3300 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3301 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3302 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 3303 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3304 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3305 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 3306 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3307 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3308 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 3309 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3310 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3311 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 3312 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 3313 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 3314 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 3315 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3316 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3317 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 3318 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3319 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3320 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 3321 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3322 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3323 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 3324 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3325 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3326 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 3327 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3328 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3329 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 3330 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3331 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3332 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 3333 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3334 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3335 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 3336 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3337 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3338 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 3339 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3340 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3341 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 3342 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3343 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3344 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 3345 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3346 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3347 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 3348 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3349 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3350 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 3351 - } - ] - }, - "minecraft:diamond_ore": { - "states": [ - { - "id": 3352, - "default": true - } - ] - }, - "minecraft:diamond_block": { - "states": [ - { - "id": 3353, - "default": true - } - ] - }, - "minecraft:crafting_table": { - "states": [ - { - "id": 3354, - "default": true - } - ] - }, - "minecraft:wheat": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 3355, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 3356 - }, - { - "properties": { - "age": "2" - }, - "id": 3357 - }, - { - "properties": { - "age": "3" - }, - "id": 3358 - }, - { - "properties": { - "age": "4" - }, - "id": 3359 - }, - { - "properties": { - "age": "5" - }, - "id": 3360 - }, - { - "properties": { - "age": "6" - }, - "id": 3361 - }, - { - "properties": { - "age": "7" - }, - "id": 3362 - } - ] - }, - "minecraft:farmland": { - "properties": { - "moisture": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "moisture": "0" - }, - "id": 3363, - "default": true - }, - { - "properties": { - "moisture": "1" - }, - "id": 3364 - }, - { - "properties": { - "moisture": "2" - }, - "id": 3365 - }, - { - "properties": { - "moisture": "3" - }, - "id": 3366 - }, - { - "properties": { - "moisture": "4" - }, - "id": 3367 - }, - { - "properties": { - "moisture": "5" - }, - "id": 3368 - }, - { - "properties": { - "moisture": "6" - }, - "id": 3369 - }, - { - "properties": { - "moisture": "7" - }, - "id": 3370 - } - ] - }, - "minecraft:furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 3371 - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 3372, - "default": true - }, - { - "properties": { - "facing": "south", - "lit": "true" - }, - "id": 3373 - }, - { - "properties": { - "facing": "south", - "lit": "false" - }, - "id": 3374 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 3375 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 3376 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 3377 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 3378 - } - ] - }, - "minecraft:oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3379 - }, - { - "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3380, - "default": true - }, - { - "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3381 - }, - { - "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3382 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3383 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3384 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3385 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3386 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3387 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3388 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3389 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3390 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3391 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3392 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3393 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3394 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3395 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3396 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3397 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3398 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3399 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3400 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3401 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3402 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3403 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3404 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3405 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3406 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3407 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3408 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3409 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3410 - } - ] - }, - "minecraft:spruce_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3411 - }, - { - "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3412, - "default": true - }, - { - "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3413 - }, - { - "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3414 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3415 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3416 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3417 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3418 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3419 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3420 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3421 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3422 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3423 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3424 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3425 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3426 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3427 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3428 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3429 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3430 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3431 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3432 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3433 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3434 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3435 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3436 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3437 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3438 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3439 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3440 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3441 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3442 - } - ] - }, - "minecraft:birch_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3443 - }, - { - "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3444, - "default": true - }, - { - "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3445 - }, - { - "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3446 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3447 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3448 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3449 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3450 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3451 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3452 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3453 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3454 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3455 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3456 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3457 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3458 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3459 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3460 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3461 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3462 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3463 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3464 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3465 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3466 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3467 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3468 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3469 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3470 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3471 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3472 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3473 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3474 - } - ] - }, - "minecraft:acacia_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3475 - }, - { - "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3476, - "default": true - }, - { - "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3477 - }, - { - "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3478 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3479 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3480 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3481 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3482 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3483 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3484 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3485 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3486 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3487 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3488 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3489 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3490 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3491 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3492 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3493 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3494 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3495 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3496 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3497 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3498 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3499 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3500 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3501 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3502 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3503 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3504 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3505 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3506 - } - ] - }, - "minecraft:jungle_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3507 - }, - { - "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3508, - "default": true - }, - { - "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3509 - }, - { - "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3510 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3511 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3512 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3513 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3514 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3515 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3516 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3517 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3518 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3519 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3520 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3521 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3522 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3523 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3524 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3525 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3526 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3527 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3528 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3529 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3530 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3531 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3532 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3533 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3534 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3535 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3536 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3537 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3538 - } - ] - }, - "minecraft:dark_oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3539 - }, - { - "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3540, - "default": true - }, - { - "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3541 - }, - { - "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3542 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3543 - }, - { - "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3544 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3545 - }, - { - "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3546 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3547 - }, - { - "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3548 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3549 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3550 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3551 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3552 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3553 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3554 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3555 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3556 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3557 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3558 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3559 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3560 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3561 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3562 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3563 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3564 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3565 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3566 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3567 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3568 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3569 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3570 - } - ] - }, - "minecraft:oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3571 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3572 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3573 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3574 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3575 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3576 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3577 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3578 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3579 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3580 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3581 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3582, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3583 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3584 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3585 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3586 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3587 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3588 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3589 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3590 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3591 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3592 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3593 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3594 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3595 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3596 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3597 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3598 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3599 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3600 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3601 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3602 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3603 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3604 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3605 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3606 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3607 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3608 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3609 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3610 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3611 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3612 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3613 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3614 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3615 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3616 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3617 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3618 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3619 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3620 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3621 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3622 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3623 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3624 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3625 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3626 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3627 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3628 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3629 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3630 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3631 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3632 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3633 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3634 - } - ] - }, - "minecraft:ladder": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3635 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3636, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3637 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3638 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3639 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3640 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3641 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3642 - } - ] - }, - "minecraft:rail": { - "properties": { - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ] - }, - "states": [ - { - "properties": { - "shape": "north_south" - }, - "id": 3643, - "default": true - }, - { - "properties": { - "shape": "east_west" - }, - "id": 3644 - }, - { - "properties": { - "shape": "ascending_east" - }, - "id": 3645 - }, - { - "properties": { - "shape": "ascending_west" - }, - "id": 3646 - }, - { - "properties": { - "shape": "ascending_north" - }, - "id": 3647 - }, - { - "properties": { - "shape": "ascending_south" - }, - "id": 3648 - }, - { - "properties": { - "shape": "south_east" - }, - "id": 3649 - }, - { - "properties": { - "shape": "south_west" - }, - "id": 3650 - }, - { - "properties": { - "shape": "north_west" - }, - "id": 3651 - }, - { - "properties": { - "shape": "north_east" - }, - "id": 3652 - } - ] - }, - "minecraft:cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3653 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3654 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3655 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3656 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3657 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3658 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3659 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3660 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3661 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3662 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3663 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3664, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3665 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3666 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3667 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3668 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3669 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3670 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3671 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3672 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3673 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3674 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3675 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3676 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3677 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3678 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3679 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3680 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3681 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3682 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3683 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3684 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3685 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3686 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3687 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3688 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3689 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3690 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3691 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3692 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3693 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3694 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3695 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3696 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3697 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3698 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3699 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3700 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3701 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3702 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3703 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3704 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3705 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3706 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3707 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3708 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3709 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3710 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3711 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3712 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3713 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3714 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3715 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3716 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3717 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3718 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3719 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3720 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3721 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3722 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3723 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3724 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3725 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3726 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3727 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3728 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3729 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3730 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3731 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3732 - } - ] - }, - "minecraft:oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3733 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3734, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3735 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3736 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3737 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3738 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3739 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3740 - } - ] - }, - "minecraft:spruce_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3741 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3742, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3743 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3744 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3745 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3746 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3747 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3748 - } - ] - }, - "minecraft:birch_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3749 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3750, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3751 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3752 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3753 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3754 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3755 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3756 - } - ] - }, - "minecraft:acacia_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3757 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3758, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3759 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3760 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3761 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3762 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3763 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3764 - } - ] - }, - "minecraft:jungle_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3765 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3766, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3767 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3768 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3769 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3770 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3771 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3772 - } - ] - }, - "minecraft:dark_oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3773 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3774, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3775 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3776 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3777 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3778 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3779 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3780 - } - ] - }, - "minecraft:lever": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 3781 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 3782 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 3783 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 3784 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 3785 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 3786 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 3787 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 3788 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 3789 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 3790, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 3791 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 3792 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 3793 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 3794 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 3795 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 3796 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 3797 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 3798 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 3799 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 3800 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 3801 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 3802 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 3803 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 3804 - } - ] - }, - "minecraft:stone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3805 - }, - { - "properties": { - "powered": "false" - }, - "id": 3806, - "default": true - } - ] - }, - "minecraft:iron_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3807 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3808 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3809 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3810 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3811 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3812 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3813 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3814 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3815 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3816 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3817 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3818, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3819 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3820 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3821 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3822 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3823 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3824 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3825 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3826 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3827 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3828 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3829 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3830 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3831 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3832 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3833 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3834 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3835 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3836 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3837 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3838 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3839 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3840 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3841 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3842 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3843 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3844 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3845 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3846 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3847 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3848 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3849 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3850 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3851 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3852 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3853 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3854 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3855 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3856 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3857 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3858 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3859 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3860 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3861 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3862 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3863 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3864 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3865 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3866 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3867 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3868 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3869 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3870 - } - ] - }, - "minecraft:oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3871 - }, - { - "properties": { - "powered": "false" - }, - "id": 3872, - "default": true - } - ] - }, - "minecraft:spruce_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3873 - }, - { - "properties": { - "powered": "false" - }, - "id": 3874, - "default": true - } - ] - }, - "minecraft:birch_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3875 - }, - { - "properties": { - "powered": "false" - }, - "id": 3876, - "default": true - } - ] - }, - "minecraft:jungle_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3877 - }, - { - "properties": { - "powered": "false" - }, - "id": 3878, - "default": true - } - ] - }, - "minecraft:acacia_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3879 - }, - { - "properties": { - "powered": "false" - }, - "id": 3880, - "default": true - } - ] - }, - "minecraft:dark_oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3881 - }, - { - "properties": { - "powered": "false" - }, - "id": 3882, - "default": true - } - ] - }, - "minecraft:redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 3883 - }, - { - "properties": { - "lit": "false" - }, - "id": 3884, - "default": true - } - ] - }, - "minecraft:redstone_torch": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 3885, - "default": true - }, - { - "properties": { - "lit": "false" - }, - "id": 3886 - } - ] - }, - "minecraft:redstone_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 3887, - "default": true - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 3888 - }, - { - "properties": { - "facing": "south", - "lit": "true" - }, - "id": 3889 - }, - { - "properties": { - "facing": "south", - "lit": "false" - }, - "id": 3890 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 3891 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 3892 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 3893 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 3894 - } - ] - }, - "minecraft:stone_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 3895 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 3896 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 3897 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 3898 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 3899 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 3900 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 3901 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 3902 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 3903 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 3904, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 3905 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 3906 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 3907 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 3908 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 3909 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 3910 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 3911 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 3912 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 3913 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 3914 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 3915 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 3916 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 3917 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 3918 - } - ] - }, - "minecraft:snow": { - "properties": { - "layers": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "properties": { - "layers": "1" - }, - "id": 3919, - "default": true - }, - { - "properties": { - "layers": "2" - }, - "id": 3920 - }, - { - "properties": { - "layers": "3" - }, - "id": 3921 - }, - { - "properties": { - "layers": "4" - }, - "id": 3922 - }, - { - "properties": { - "layers": "5" - }, - "id": 3923 - }, - { - "properties": { - "layers": "6" - }, - "id": 3924 - }, - { - "properties": { - "layers": "7" - }, - "id": 3925 - }, - { - "properties": { - "layers": "8" - }, - "id": 3926 - } - ] - }, - "minecraft:ice": { - "states": [ - { - "id": 3927, - "default": true - } - ] - }, - "minecraft:snow_block": { - "states": [ - { - "id": 3928, - "default": true - } - ] - }, - "minecraft:cactus": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 3929, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 3930 - }, - { - "properties": { - "age": "2" - }, - "id": 3931 - }, - { - "properties": { - "age": "3" - }, - "id": 3932 - }, - { - "properties": { - "age": "4" - }, - "id": 3933 - }, - { - "properties": { - "age": "5" - }, - "id": 3934 - }, - { - "properties": { - "age": "6" - }, - "id": 3935 - }, - { - "properties": { - "age": "7" - }, - "id": 3936 - }, - { - "properties": { - "age": "8" - }, - "id": 3937 - }, - { - "properties": { - "age": "9" - }, - "id": 3938 - }, - { - "properties": { - "age": "10" - }, - "id": 3939 - }, - { - "properties": { - "age": "11" - }, - "id": 3940 - }, - { - "properties": { - "age": "12" - }, - "id": 3941 - }, - { - "properties": { - "age": "13" - }, - "id": 3942 - }, - { - "properties": { - "age": "14" - }, - "id": 3943 - }, - { - "properties": { - "age": "15" - }, - "id": 3944 - } - ] - }, - "minecraft:clay": { - "states": [ - { - "id": 3945, - "default": true - } - ] - }, - "minecraft:sugar_cane": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 3946, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 3947 - }, - { - "properties": { - "age": "2" - }, - "id": 3948 - }, - { - "properties": { - "age": "3" - }, - "id": 3949 - }, - { - "properties": { - "age": "4" - }, - "id": 3950 - }, - { - "properties": { - "age": "5" - }, - "id": 3951 - }, - { - "properties": { - "age": "6" - }, - "id": 3952 - }, - { - "properties": { - "age": "7" - }, - "id": 3953 - }, - { - "properties": { - "age": "8" - }, - "id": 3954 - }, - { - "properties": { - "age": "9" - }, - "id": 3955 - }, - { - "properties": { - "age": "10" - }, - "id": 3956 - }, - { - "properties": { - "age": "11" - }, - "id": 3957 - }, - { - "properties": { - "age": "12" - }, - "id": 3958 - }, - { - "properties": { - "age": "13" - }, - "id": 3959 - }, - { - "properties": { - "age": "14" - }, - "id": 3960 - }, - { - "properties": { - "age": "15" - }, - "id": 3961 - } - ] - }, - "minecraft:jukebox": { - "properties": { - "has_record": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "has_record": "true" - }, - "id": 3962 - }, - { - "properties": { - "has_record": "false" - }, - "id": 3963, - "default": true - } - ] - }, - "minecraft:oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 3964 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 3965 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 3966 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 3967 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 3968 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 3969 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 3970 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 3971 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 3972 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 3973 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 3974 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 3975 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 3976 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 3977 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 3978 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 3979 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 3980 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 3981 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 3982 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 3983 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 3984 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 3985 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 3986 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 3987 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 3988 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 3989 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 3990 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 3991 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 3992 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 3993 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 3994 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 3995, - "default": true - } - ] - }, - "minecraft:pumpkin": { - "states": [ - { - "id": 3996, - "default": true - } - ] - }, - "minecraft:netherrack": { - "states": [ - { - "id": 3997, - "default": true - } - ] - }, - "minecraft:soul_sand": { - "states": [ - { - "id": 3998, - "default": true - } - ] - }, - "minecraft:glowstone": { - "states": [ - { - "id": 3999, - "default": true - } - ] - }, - "minecraft:nether_portal": { - "properties": { - "axis": [ - "x", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4000, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4001 - } - ] - }, - "minecraft:carved_pumpkin": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4002, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4003 - }, - { - "properties": { - "facing": "west" - }, - "id": 4004 - }, - { - "properties": { - "facing": "east" - }, - "id": 4005 - } - ] - }, - "minecraft:jack_o_lantern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4006, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4007 - }, - { - "properties": { - "facing": "west" - }, - "id": 4008 - }, - { - "properties": { - "facing": "east" - }, - "id": 4009 - } - ] - }, - "minecraft:cake": { - "properties": { - "bites": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - }, - "states": [ - { - "properties": { - "bites": "0" - }, - "id": 4010, - "default": true - }, - { - "properties": { - "bites": "1" - }, - "id": 4011 - }, - { - "properties": { - "bites": "2" - }, - "id": 4012 - }, - { - "properties": { - "bites": "3" - }, - "id": 4013 - }, - { - "properties": { - "bites": "4" - }, - "id": 4014 - }, - { - "properties": { - "bites": "5" - }, - "id": 4015 - }, - { - "properties": { - "bites": "6" - }, - "id": 4016 - } - ] - }, - "minecraft:repeater": { - "properties": { - "delay": [ - "1", - "2", - "3", - "4" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "locked": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4017 - }, - { - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4018 - }, - { - "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4019 - }, - { - "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4020, - "default": true - }, - { - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4021 - }, - { - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4022 - }, - { - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4023 - }, - { - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4024 - }, - { - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4025 - }, - { - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4026 - }, - { - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4027 - }, - { - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4028 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4029 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4030 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4031 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4032 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4033 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4034 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4035 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4036 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4037 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4038 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4039 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4040 - }, - { - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4041 - }, - { - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4042 - }, - { - "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4043 - }, - { - "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4044 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4045 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4046 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4047 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4048 - }, - { - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4049 - }, - { - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4050 - }, - { - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4051 - }, - { - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4052 - }, - { - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4053 - }, - { - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4054 - }, - { - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4055 - }, - { - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4056 - }, - { - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4057 - }, - { - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4058 - }, - { - "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4059 - }, - { - "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4060 - }, - { - "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4061 - }, - { - "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4062 - }, - { - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4063 - }, - { - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4064 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4065 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4066 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4067 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4068 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4069 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4070 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4071 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4072 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4073 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4074 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4075 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4076 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4077 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4078 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4079 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4080 - } - ] - }, - "minecraft:white_stained_glass": { - "states": [ - { - "id": 4081, - "default": true - } - ] - }, - "minecraft:orange_stained_glass": { - "states": [ - { - "id": 4082, - "default": true - } - ] - }, - "minecraft:magenta_stained_glass": { - "states": [ - { - "id": 4083, - "default": true - } - ] - }, - "minecraft:light_blue_stained_glass": { - "states": [ - { - "id": 4084, - "default": true - } - ] - }, - "minecraft:yellow_stained_glass": { - "states": [ - { - "id": 4085, - "default": true - } - ] - }, - "minecraft:lime_stained_glass": { - "states": [ - { - "id": 4086, - "default": true - } - ] - }, - "minecraft:pink_stained_glass": { - "states": [ - { - "id": 4087, - "default": true - } - ] - }, - "minecraft:gray_stained_glass": { - "states": [ - { - "id": 4088, - "default": true - } - ] - }, - "minecraft:light_gray_stained_glass": { - "states": [ - { - "id": 4089, - "default": true - } - ] - }, - "minecraft:cyan_stained_glass": { - "states": [ - { - "id": 4090, - "default": true - } - ] - }, - "minecraft:purple_stained_glass": { - "states": [ - { - "id": 4091, - "default": true - } - ] - }, - "minecraft:blue_stained_glass": { - "states": [ - { - "id": 4092, - "default": true - } - ] - }, - "minecraft:brown_stained_glass": { - "states": [ - { - "id": 4093, - "default": true - } - ] - }, - "minecraft:green_stained_glass": { - "states": [ - { - "id": 4094, - "default": true - } - ] - }, - "minecraft:red_stained_glass": { - "states": [ - { - "id": 4095, - "default": true - } - ] - }, - "minecraft:black_stained_glass": { - "states": [ - { - "id": 4096, - "default": true - } - ] - }, - "minecraft:oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4097 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4098 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4099 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4100 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4101 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4102 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4103 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4104 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4105 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4106 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4107 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4108 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4109 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4110 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4111 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4112, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4113 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4114 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4115 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4116 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4117 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4118 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4119 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4120 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4121 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4122 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4123 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4124 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4125 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4126 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4127 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4128 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4129 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4130 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4131 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4132 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4133 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4134 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4135 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4136 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4137 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4138 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4139 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4140 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4141 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4142 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4143 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4144 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4145 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4146 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4147 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4148 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4149 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4150 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4151 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4152 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4153 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4154 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4155 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4156 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4157 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4158 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4159 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4160 - } - ] - }, - "minecraft:spruce_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4161 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4162 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4163 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4164 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4165 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4166 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4167 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4168 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4169 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4170 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4171 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4172 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4173 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4174 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4175 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4176, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4177 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4178 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4179 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4180 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4181 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4182 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4183 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4184 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4185 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4186 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4187 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4188 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4189 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4190 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4191 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4192 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4193 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4194 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4195 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4196 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4197 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4198 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4199 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4200 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4201 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4202 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4203 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4204 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4205 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4206 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4207 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4208 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4209 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4210 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4211 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4212 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4213 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4214 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4215 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4216 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4217 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4218 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4219 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4220 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4221 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4222 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4223 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4224 - } - ] - }, - "minecraft:birch_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4225 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4226 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4227 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4228 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4229 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4230 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4231 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4232 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4233 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4234 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4235 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4236 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4237 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4238 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4239 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4240, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4241 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4242 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4243 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4244 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4245 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4246 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4247 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4248 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4249 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4250 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4251 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4252 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4253 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4254 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4255 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4256 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4257 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4258 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4259 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4260 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4261 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4262 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4263 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4264 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4265 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4266 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4267 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4268 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4269 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4270 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4271 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4272 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4273 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4274 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4275 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4276 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4277 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4278 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4279 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4280 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4281 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4282 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4283 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4284 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4285 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4286 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4287 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4288 - } - ] - }, - "minecraft:jungle_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4289 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4290 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4291 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4292 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4293 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4294 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4295 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4296 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4297 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4298 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4299 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4300 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4301 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4302 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4303 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4304, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4305 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4306 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4307 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4308 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4309 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4310 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4311 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4312 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4313 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4314 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4315 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4316 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4317 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4318 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4319 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4320 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4321 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4322 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4323 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4324 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4325 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4326 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4327 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4328 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4329 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4330 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4331 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4332 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4333 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4334 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4335 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4336 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4337 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4338 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4339 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4340 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4341 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4342 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4343 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4344 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4345 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4346 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4347 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4348 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4349 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4350 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4351 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4352 - } - ] - }, - "minecraft:acacia_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4353 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4354 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4355 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4356 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4357 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4358 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4359 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4360 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4361 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4362 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4363 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4364 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4365 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4366 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4367 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4368, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4369 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4370 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4371 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4372 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4373 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4374 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4375 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4376 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4377 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4378 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4379 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4380 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4381 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4382 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4383 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4384 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4385 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4386 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4387 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4388 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4389 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4390 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4391 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4392 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4393 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4394 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4395 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4396 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4397 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4398 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4399 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4400 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4401 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4402 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4403 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4404 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4405 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4406 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4407 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4408 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4409 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4410 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4411 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4412 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4413 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4414 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4415 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4416 - } - ] - }, - "minecraft:dark_oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4417 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4418 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4419 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4420 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4421 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4422 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4423 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4424 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4425 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4426 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4427 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4428 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4429 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4430 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4431 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4432, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4433 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4434 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4435 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4436 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4437 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4438 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4439 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4440 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4441 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4442 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4443 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4444 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4445 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4446 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4447 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4448 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4449 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4450 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4451 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4452 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4453 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4454 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4455 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4456 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4457 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4458 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4459 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4460 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4461 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4462 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4463 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4464 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4465 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4466 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4467 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4468 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4469 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4470 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4471 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4472 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4473 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4474 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4475 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4476 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4477 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4478 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4479 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4480 - } - ] - }, - "minecraft:stone_bricks": { - "states": [ - { - "id": 4481, - "default": true - } - ] - }, - "minecraft:mossy_stone_bricks": { - "states": [ - { - "id": 4482, - "default": true - } - ] - }, - "minecraft:cracked_stone_bricks": { - "states": [ - { - "id": 4483, - "default": true - } - ] - }, - "minecraft:chiseled_stone_bricks": { - "states": [ - { - "id": 4484, - "default": true - } - ] - }, - "minecraft:infested_stone": { - "states": [ - { - "id": 4485, - "default": true - } - ] - }, - "minecraft:infested_cobblestone": { - "states": [ - { - "id": 4486, - "default": true - } - ] - }, - "minecraft:infested_stone_bricks": { - "states": [ - { - "id": 4487, - "default": true - } - ] - }, - "minecraft:infested_mossy_stone_bricks": { - "states": [ - { - "id": 4488, - "default": true - } - ] - }, - "minecraft:infested_cracked_stone_bricks": { - "states": [ - { - "id": 4489, - "default": true - } - ] - }, - "minecraft:infested_chiseled_stone_bricks": { - "states": [ - { - "id": 4490, - "default": true - } - ] - }, - "minecraft:brown_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4491, - "default": true - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4492 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4493 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4494 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4495 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4496 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4497 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4498 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4499 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4500 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4501 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4502 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4503 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4504 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4505 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4506 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4507 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4508 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4509 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4510 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4511 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4512 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4513 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4514 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4515 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4516 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4517 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4518 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4519 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4520 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4521 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4522 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4523 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4524 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4525 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4526 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4527 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4528 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4529 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4530 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4531 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4532 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4533 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4534 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4535 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4536 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4537 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4538 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4539 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4540 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4541 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4542 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4543 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4544 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4545 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4546 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4547 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4548 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4549 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4550 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4551 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4552 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4553 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4554 - } - ] - }, - "minecraft:red_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4555, - "default": true - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4556 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4557 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4558 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4559 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4560 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4561 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4562 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4563 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4564 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4565 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4566 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4567 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4568 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4569 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4570 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4571 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4572 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4573 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4574 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4575 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4576 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4577 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4578 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4579 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4580 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4581 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4582 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4583 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4584 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4585 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4586 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4587 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4588 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4589 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4590 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4591 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4592 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4593 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4594 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4595 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4596 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4597 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4598 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4599 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4600 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4601 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4602 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4603 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4604 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4605 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4606 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4607 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4608 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4609 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4610 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4611 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4612 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4613 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4614 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4615 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4616 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4617 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4618 - } - ] - }, - "minecraft:mushroom_stem": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4619, - "default": true - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4620 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4621 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4622 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4623 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4624 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4625 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4626 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4627 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4628 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4629 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4630 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4631 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4632 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4633 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4634 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4635 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4636 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4637 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4638 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4639 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4640 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4641 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4642 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4643 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4644 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4645 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4646 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4647 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4648 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4649 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4650 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4651 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4652 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4653 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4654 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4655 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4656 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4657 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4658 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4659 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4660 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4661 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4662 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4663 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4664 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4665 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4666 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4667 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4668 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4669 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4670 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4671 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4672 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4673 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4674 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4675 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4676 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4677 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4678 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4679 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4680 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4681 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4682 - } - ] - }, - "minecraft:iron_bars": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4683 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4684 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4685 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4686 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4687 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4688 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4689 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4690 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4691 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4692 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4693 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4694 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4695 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4696 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4697 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4698 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4699 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4700 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4701 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4702 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4703 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4704 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4705 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4706 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4707 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4708 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4709 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4710 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4711 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4712 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4713 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4714, - "default": true - } - ] - }, - "minecraft:glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4715 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4716 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4717 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4718 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4719 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4720 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4721 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4722 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4723 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4724 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4725 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4726 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4727 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4728 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4729 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4730 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4731 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4732 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4733 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4734 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4735 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4736 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4737 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4738 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4739 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4740 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4741 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4742 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4743 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4744 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4745 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4746, - "default": true - } - ] - }, - "minecraft:melon": { - "states": [ - { - "id": 4747, - "default": true - } - ] - }, - "minecraft:attached_pumpkin_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4748, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4749 - }, - { - "properties": { - "facing": "west" - }, - "id": 4750 - }, - { - "properties": { - "facing": "east" - }, - "id": 4751 - } - ] - }, - "minecraft:attached_melon_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4752, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4753 - }, - { - "properties": { - "facing": "west" - }, - "id": 4754 - }, - { - "properties": { - "facing": "east" - }, - "id": 4755 - } - ] - }, - "minecraft:pumpkin_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 4756, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 4757 - }, - { - "properties": { - "age": "2" - }, - "id": 4758 - }, - { - "properties": { - "age": "3" - }, - "id": 4759 - }, - { - "properties": { - "age": "4" - }, - "id": 4760 - }, - { - "properties": { - "age": "5" - }, - "id": 4761 - }, - { - "properties": { - "age": "6" - }, - "id": 4762 - }, - { - "properties": { - "age": "7" - }, - "id": 4763 - } - ] - }, - "minecraft:melon_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 4764, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 4765 - }, - { - "properties": { - "age": "2" - }, - "id": 4766 - }, - { - "properties": { - "age": "3" - }, - "id": 4767 - }, - { - "properties": { - "age": "4" - }, - "id": 4768 - }, - { - "properties": { - "age": "5" - }, - "id": 4769 - }, - { - "properties": { - "age": "6" - }, - "id": 4770 - }, - { - "properties": { - "age": "7" - }, - "id": 4771 - } - ] - }, - "minecraft:vine": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4772 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4773 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4774 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4775 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4776 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4777 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4778 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4779 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4780 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4781 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4782 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4783 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4784 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4785 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4786 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4787 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4788 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4789 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4790 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4791 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4792 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4793 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4794 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4795 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4796 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4797 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4798 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4799 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4800 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4801 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4802 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4803, - "default": true - } - ] - }, - "minecraft:oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 4804 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 4805 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 4806 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 4807 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 4808 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 4809 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 4810 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 4811, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 4812 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 4813 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 4814 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 4815 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 4816 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 4817 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 4818 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 4819 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 4820 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 4821 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 4822 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 4823 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 4824 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 4825 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 4826 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 4827 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 4828 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 4829 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 4830 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 4831 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 4832 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 4833 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 4834 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 4835 - } - ] - }, - "minecraft:brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4836 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4837 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4838 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4839 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4840 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4841 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4842 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4843 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4844 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4845 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4846 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4847, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4848 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4849 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4850 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4851 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4852 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4853 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4854 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4855 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4856 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4857 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4858 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4859 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4860 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4861 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4862 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4863 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4864 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4865 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4866 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4867 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4868 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4869 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4870 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4871 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4872 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4873 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4874 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4875 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4876 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4877 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4878 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4879 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4880 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4881 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4882 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4883 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4884 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4885 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4886 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4887 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4888 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4889 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4890 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4891 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4892 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4893 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4894 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4895 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4896 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4897 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4898 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4899 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4900 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4901 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4902 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4903 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4904 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4905 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4906 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4907 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4908 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4909 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4910 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4911 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4912 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4913 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4914 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4915 - } - ] - }, - "minecraft:stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4916 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4917 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4918 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4919 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4920 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4921 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4922 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4923 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4924 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4925 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4926 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4927, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4928 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4929 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4930 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4931 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4932 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4933 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4934 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4935 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4936 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4937 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4938 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4939 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4940 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4941 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4942 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4943 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4944 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4945 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4946 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4947 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4948 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4949 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4950 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4951 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4952 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4953 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4954 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4955 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4956 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4957 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4958 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4959 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4960 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4961 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4962 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4963 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4964 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4965 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4966 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4967 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4968 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4969 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4970 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4971 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4972 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4973 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4974 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4975 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4976 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4977 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4978 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4979 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4980 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4981 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4982 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4983 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4984 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4985 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 4986 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 4987 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 4988 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 4989 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 4990 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 4991 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 4992 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 4993 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 4994 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 4995 - } - ] - }, - "minecraft:mycelium": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "snowy": "true" - }, - "id": 4996 - }, - { - "properties": { - "snowy": "false" - }, - "id": 4997, - "default": true - } - ] - }, - "minecraft:lily_pad": { - "states": [ - { - "id": 4998, - "default": true - } - ] - }, - "minecraft:nether_bricks": { - "states": [ - { - "id": 4999, - "default": true - } - ] - }, - "minecraft:nether_brick_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5000 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5001 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5002 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5003 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5004 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5005 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5006 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5007 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5008 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5009 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5010 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5011 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5012 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5013 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5014 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5015 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5016 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5017 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5018 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5019 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5020 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5021 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5022 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5023 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5024 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5025 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5026 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5027 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5028 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5029 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5030 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5031, - "default": true - } - ] - }, - "minecraft:nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5032 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5033 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5034 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5035 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5036 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5037 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5038 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5039 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5040 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5041 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5042 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5043, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5044 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5045 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5046 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5047 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5048 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5049 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5050 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5051 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5052 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5053 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5054 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5055 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5056 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5057 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5058 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5059 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5060 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5061 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5062 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5063 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5064 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5065 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5066 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5067 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5068 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5069 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5070 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5071 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5072 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5073 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5074 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5075 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5076 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5077 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5078 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5079 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5080 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5081 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5082 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5083 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5084 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5085 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5086 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5087 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5088 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5089 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5090 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5091 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5092 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5093 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5094 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5095 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5096 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5097 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5098 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5099 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5100 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5101 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5102 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5103 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5104 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5105 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5106 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5107 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5108 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5109 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5110 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5111 - } - ] - }, - "minecraft:nether_wart": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 5112, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 5113 - }, - { - "properties": { - "age": "2" - }, - "id": 5114 - }, - { - "properties": { - "age": "3" - }, - "id": 5115 - } - ] - }, - "minecraft:enchanting_table": { - "states": [ - { - "id": 5116, - "default": true - } - ] - }, - "minecraft:brewing_stand": { - "properties": { - "has_bottle_0": [ - "true", - "false" - ], - "has_bottle_1": [ - "true", - "false" - ], - "has_bottle_2": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "true" - }, - "id": 5117 - }, - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "false" - }, - "id": 5118 - }, - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "true" - }, - "id": 5119 - }, - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "false" - }, - "id": 5120 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "true" - }, - "id": 5121 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "false" - }, - "id": 5122 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "true" - }, - "id": 5123 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "false" - }, - "id": 5124, - "default": true - } - ] - }, - "minecraft:cauldron": { - "properties": { - "level": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "level": "0" - }, - "id": 5125, - "default": true - }, - { - "properties": { - "level": "1" - }, - "id": 5126 - }, - { - "properties": { - "level": "2" - }, - "id": 5127 - }, - { - "properties": { - "level": "3" - }, - "id": 5128 - } - ] - }, - "minecraft:end_portal": { - "states": [ - { - "id": 5129, - "default": true - } - ] - }, - "minecraft:end_portal_frame": { - "properties": { - "eye": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "eye": "true", - "facing": "north" - }, - "id": 5130 - }, - { - "properties": { - "eye": "true", - "facing": "south" - }, - "id": 5131 - }, - { - "properties": { - "eye": "true", - "facing": "west" - }, - "id": 5132 - }, - { - "properties": { - "eye": "true", - "facing": "east" - }, - "id": 5133 - }, - { - "properties": { - "eye": "false", - "facing": "north" - }, - "id": 5134, - "default": true - }, - { - "properties": { - "eye": "false", - "facing": "south" - }, - "id": 5135 - }, - { - "properties": { - "eye": "false", - "facing": "west" - }, - "id": 5136 - }, - { - "properties": { - "eye": "false", - "facing": "east" - }, - "id": 5137 - } - ] - }, - "minecraft:end_stone": { - "states": [ - { - "id": 5138, - "default": true - } - ] - }, - "minecraft:dragon_egg": { - "states": [ - { - "id": 5139, - "default": true - } - ] - }, - "minecraft:redstone_lamp": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 5140 - }, - { - "properties": { - "lit": "false" - }, - "id": 5141, - "default": true - } - ] - }, - "minecraft:cocoa": { - "properties": { - "age": [ - "0", - "1", - "2" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "facing": "north" - }, - "id": 5142, - "default": true - }, - { - "properties": { - "age": "0", - "facing": "south" - }, - "id": 5143 - }, - { - "properties": { - "age": "0", - "facing": "west" - }, - "id": 5144 - }, - { - "properties": { - "age": "0", - "facing": "east" - }, - "id": 5145 - }, - { - "properties": { - "age": "1", - "facing": "north" - }, - "id": 5146 - }, - { - "properties": { - "age": "1", - "facing": "south" - }, - "id": 5147 - }, - { - "properties": { - "age": "1", - "facing": "west" - }, - "id": 5148 - }, - { - "properties": { - "age": "1", - "facing": "east" - }, - "id": 5149 - }, - { - "properties": { - "age": "2", - "facing": "north" - }, - "id": 5150 - }, - { - "properties": { - "age": "2", - "facing": "south" - }, - "id": 5151 - }, - { - "properties": { - "age": "2", - "facing": "west" - }, - "id": 5152 - }, - { - "properties": { - "age": "2", - "facing": "east" - }, - "id": 5153 - } - ] - }, - "minecraft:sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5154 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5155 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5156 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5157 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5158 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5159 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5160 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5161 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5162 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5163 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5164 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5165, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5166 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5167 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5168 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5169 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5170 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5171 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5172 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5173 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5174 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5175 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5176 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5177 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5178 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5179 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5180 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5181 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5182 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5183 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5184 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5185 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5186 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5187 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5188 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5189 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5190 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5191 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5192 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5193 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5194 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5195 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5196 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5197 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5198 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5199 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5200 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5201 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5202 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5203 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5204 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5205 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5206 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5207 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5208 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5209 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5210 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5211 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5212 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5213 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5214 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5215 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5216 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5217 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5218 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5219 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5220 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5221 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5222 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5223 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5224 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5225 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5226 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5227 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5228 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5229 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5230 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5231 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5232 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5233 - } - ] - }, - "minecraft:emerald_ore": { - "states": [ - { - "id": 5234, - "default": true - } - ] - }, - "minecraft:ender_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 5235 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 5236, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 5237 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 5238 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 5239 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 5240 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 5241 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 5242 - } - ] - }, - "minecraft:tripwire_hook": { - "properties": { - "attached": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attached": "true", - "facing": "north", - "powered": "true" - }, - "id": 5243 - }, - { - "properties": { - "attached": "true", - "facing": "north", - "powered": "false" - }, - "id": 5244 - }, - { - "properties": { - "attached": "true", - "facing": "south", - "powered": "true" - }, - "id": 5245 - }, - { - "properties": { - "attached": "true", - "facing": "south", - "powered": "false" - }, - "id": 5246 - }, - { - "properties": { - "attached": "true", - "facing": "west", - "powered": "true" - }, - "id": 5247 - }, - { - "properties": { - "attached": "true", - "facing": "west", - "powered": "false" - }, - "id": 5248 - }, - { - "properties": { - "attached": "true", - "facing": "east", - "powered": "true" - }, - "id": 5249 - }, - { - "properties": { - "attached": "true", - "facing": "east", - "powered": "false" - }, - "id": 5250 - }, - { - "properties": { - "attached": "false", - "facing": "north", - "powered": "true" - }, - "id": 5251 - }, - { - "properties": { - "attached": "false", - "facing": "north", - "powered": "false" - }, - "id": 5252, - "default": true - }, - { - "properties": { - "attached": "false", - "facing": "south", - "powered": "true" - }, - "id": 5253 - }, - { - "properties": { - "attached": "false", - "facing": "south", - "powered": "false" - }, - "id": 5254 - }, - { - "properties": { - "attached": "false", - "facing": "west", - "powered": "true" - }, - "id": 5255 - }, - { - "properties": { - "attached": "false", - "facing": "west", - "powered": "false" - }, - "id": 5256 - }, - { - "properties": { - "attached": "false", - "facing": "east", - "powered": "true" - }, - "id": 5257 - }, - { - "properties": { - "attached": "false", - "facing": "east", - "powered": "false" - }, - "id": 5258 - } - ] - }, - "minecraft:tripwire": { - "properties": { - "attached": [ - "true", - "false" - ], - "disarmed": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5259 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5260 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5261 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5262 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5263 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5264 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5265 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5266 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5267 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5268 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5269 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5270 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5271 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5272 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5273 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5274 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5275 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5276 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5277 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5278 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5279 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5280 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5281 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5282 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5283 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5284 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5285 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5286 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5287 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5288 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5289 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5290 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5291 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5292 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5293 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5294 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5295 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5296 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5297 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5298 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5299 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5300 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5301 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5302 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5303 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5304 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5305 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5306 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5307 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5308 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5309 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5310 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5311 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5312 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5313 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5314 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5315 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5316 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5317 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5318 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5319 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5320 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5321 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5322 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5323 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5324 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5325 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5326 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5327 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5328 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5329 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5330 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5331 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5332 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5333 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5334 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5335 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5336 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5337 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5338 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5339 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5340 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5341 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5342 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5343 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5344 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5345 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5346 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5347 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5348 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5349 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5350 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5351 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5352 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5353 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5354 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5355 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5356 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5357 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5358 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5359 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5360 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5361 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5362 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5363 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5364 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5365 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5366 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5367 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5368 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5369 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5370 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5371 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5372 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5373 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5374 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5375 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5376 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5377 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5378 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5379 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5380 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5381 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5382 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5383 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5384 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5385 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5386, - "default": true - } - ] - }, - "minecraft:emerald_block": { - "states": [ - { - "id": 5387, - "default": true - } - ] - }, - "minecraft:spruce_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5388 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5389 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5390 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5391 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5392 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5393 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5394 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5395 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5396 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5397 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5398 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5399, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5400 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5401 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5402 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5403 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5404 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5405 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5406 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5407 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5408 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5409 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5410 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5411 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5412 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5413 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5414 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5415 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5416 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5417 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5418 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5419 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5420 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5421 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5422 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5423 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5424 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5425 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5426 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5427 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5428 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5429 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5430 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5431 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5432 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5433 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5434 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5435 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5436 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5437 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5438 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5439 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5440 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5441 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5442 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5443 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5444 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5445 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5446 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5447 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5448 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5449 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5450 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5451 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5452 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5453 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5454 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5455 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5456 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5457 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5458 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5459 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5460 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5461 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5462 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5463 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5464 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5465 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5466 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5467 - } - ] - }, - "minecraft:birch_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5468 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5469 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5470 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5471 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5472 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5473 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5474 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5475 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5476 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5477 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5478 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5479, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5480 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5481 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5482 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5483 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5484 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5485 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5486 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5487 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5488 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5489 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5490 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5491 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5492 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5493 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5494 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5495 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5496 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5497 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5498 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5499 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5500 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5501 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5502 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5503 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5504 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5505 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5506 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5507 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5508 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5509 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5510 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5511 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5512 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5513 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5514 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5515 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5516 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5517 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5518 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5519 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5520 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5521 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5522 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5523 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5524 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5525 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5526 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5527 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5528 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5529 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5530 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5531 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5532 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5533 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5534 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5535 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5536 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5537 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5538 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5539 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5540 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5541 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5542 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5543 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5544 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5545 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5546 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5547 - } - ] - }, - "minecraft:jungle_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5548 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5549 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5550 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5551 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5552 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5553 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5554 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5555 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5556 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5557 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5558 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5559, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5560 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5561 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5562 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5563 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5564 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5565 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5566 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5567 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5568 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5569 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5570 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5571 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5572 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5573 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5574 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5575 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5576 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5577 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5578 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5579 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5580 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5581 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5582 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5583 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5584 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5585 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5586 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5587 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5588 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5589 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5590 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5591 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5592 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5593 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5594 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5595 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5596 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5597 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5598 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5599 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5600 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5601 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5602 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5603 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5604 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5605 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5606 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5607 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5608 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5609 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5610 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5611 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5612 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5613 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5614 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5615 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5616 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5617 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5618 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5619 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5620 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5621 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5622 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5623 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5624 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5625 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5626 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5627 - } - ] - }, - "minecraft:command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 5628 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 5629 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 5630 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 5631 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 5632 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 5633 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 5634, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 5635 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 5636 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 5637 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 5638 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 5639 - } - ] - }, - "minecraft:beacon": { - "states": [ - { - "id": 5640, - "default": true - } - ] - }, - "minecraft:cobblestone_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5641 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5642 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5643 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5644 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5645 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5646 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5647 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5648 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5649 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5650 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5651 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5652 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5653 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5654 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5655 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5656 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5657 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5658 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5659 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5660 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5661 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5662 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5663 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5664 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5665 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5666 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5667 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5668 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5669 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5670 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5671 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5672 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5673 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5674 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5675 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5676 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5677 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5678 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5679 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5680 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5681 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5682 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5683 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5684 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5685 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5686 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5687 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5688 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5689 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5690 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5691 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5692 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5693 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5694 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5695 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5696 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5697 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5698 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5699 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5700, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5701 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5702 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5703 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5704 - } - ] - }, - "minecraft:mossy_cobblestone_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5705 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5706 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5707 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5708 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5709 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5710 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5711 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5712 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5713 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5714 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5715 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5716 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5717 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5718 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5719 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5720 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5721 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5722 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5723 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5724 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5725 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5726 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5727 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5728 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5729 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5730 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5731 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5732 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5733 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5734 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5735 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5736 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5737 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5738 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5739 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5740 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5741 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5742 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5743 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5744 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5745 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5746 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5747 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5748 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5749 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5750 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5751 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5752 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5753 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5754 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5755 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5756 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5757 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5758 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5759 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5760 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5761 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5762 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5763 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5764, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5765 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5766 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5767 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5768 - } - ] - }, - "minecraft:flower_pot": { - "states": [ - { - "id": 5769, - "default": true - } - ] - }, - "minecraft:potted_oak_sapling": { - "states": [ - { - "id": 5770, - "default": true - } - ] - }, - "minecraft:potted_spruce_sapling": { - "states": [ - { - "id": 5771, - "default": true - } - ] - }, - "minecraft:potted_birch_sapling": { - "states": [ - { - "id": 5772, - "default": true - } - ] - }, - "minecraft:potted_jungle_sapling": { - "states": [ - { - "id": 5773, - "default": true - } - ] - }, - "minecraft:potted_acacia_sapling": { - "states": [ - { - "id": 5774, - "default": true - } - ] - }, - "minecraft:potted_dark_oak_sapling": { - "states": [ - { - "id": 5775, - "default": true - } - ] - }, - "minecraft:potted_fern": { - "states": [ - { - "id": 5776, - "default": true - } - ] - }, - "minecraft:potted_dandelion": { - "states": [ - { - "id": 5777, - "default": true - } - ] - }, - "minecraft:potted_poppy": { - "states": [ - { - "id": 5778, - "default": true - } - ] - }, - "minecraft:potted_blue_orchid": { - "states": [ - { - "id": 5779, - "default": true - } - ] - }, - "minecraft:potted_allium": { - "states": [ - { - "id": 5780, - "default": true - } - ] - }, - "minecraft:potted_azure_bluet": { - "states": [ - { - "id": 5781, - "default": true - } - ] - }, - "minecraft:potted_red_tulip": { - "states": [ - { - "id": 5782, - "default": true - } - ] - }, - "minecraft:potted_orange_tulip": { - "states": [ - { - "id": 5783, - "default": true - } - ] - }, - "minecraft:potted_white_tulip": { - "states": [ - { - "id": 5784, - "default": true - } - ] - }, - "minecraft:potted_pink_tulip": { - "states": [ - { - "id": 5785, - "default": true - } - ] - }, - "minecraft:potted_oxeye_daisy": { - "states": [ - { - "id": 5786, - "default": true - } - ] - }, - "minecraft:potted_cornflower": { - "states": [ - { - "id": 5787, - "default": true - } - ] - }, - "minecraft:potted_lily_of_the_valley": { - "states": [ - { - "id": 5788, - "default": true - } - ] - }, - "minecraft:potted_wither_rose": { - "states": [ - { - "id": 5789, - "default": true - } - ] - }, - "minecraft:potted_red_mushroom": { - "states": [ - { - "id": 5790, - "default": true - } - ] - }, - "minecraft:potted_brown_mushroom": { - "states": [ - { - "id": 5791, - "default": true - } - ] - }, - "minecraft:potted_dead_bush": { - "states": [ - { - "id": 5792, - "default": true - } - ] - }, - "minecraft:potted_cactus": { - "states": [ - { - "id": 5793, - "default": true - } - ] - }, - "minecraft:carrots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 5794, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 5795 - }, - { - "properties": { - "age": "2" - }, - "id": 5796 - }, - { - "properties": { - "age": "3" - }, - "id": 5797 - }, - { - "properties": { - "age": "4" - }, - "id": 5798 - }, - { - "properties": { - "age": "5" - }, - "id": 5799 - }, - { - "properties": { - "age": "6" - }, - "id": 5800 - }, - { - "properties": { - "age": "7" - }, - "id": 5801 - } - ] - }, - "minecraft:potatoes": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 5802, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 5803 - }, - { - "properties": { - "age": "2" - }, - "id": 5804 - }, - { - "properties": { - "age": "3" - }, - "id": 5805 - }, - { - "properties": { - "age": "4" - }, - "id": 5806 - }, - { - "properties": { - "age": "5" - }, - "id": 5807 - }, - { - "properties": { - "age": "6" - }, - "id": 5808 - }, - { - "properties": { - "age": "7" - }, - "id": 5809 - } - ] - }, - "minecraft:oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 5810 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 5811 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 5812 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 5813 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 5814 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 5815 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 5816 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 5817 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 5818 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 5819, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 5820 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 5821 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 5822 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 5823 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 5824 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 5825 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 5826 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 5827 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 5828 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 5829 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 5830 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 5831 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 5832 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 5833 - } - ] - }, - "minecraft:spruce_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 5834 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 5835 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 5836 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 5837 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 5838 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 5839 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 5840 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 5841 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 5842 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 5843, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 5844 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 5845 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 5846 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 5847 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 5848 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 5849 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 5850 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 5851 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 5852 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 5853 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 5854 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 5855 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 5856 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 5857 - } - ] - }, - "minecraft:birch_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 5858 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 5859 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 5860 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 5861 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 5862 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 5863 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 5864 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 5865 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 5866 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 5867, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 5868 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 5869 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 5870 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 5871 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 5872 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 5873 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 5874 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 5875 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 5876 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 5877 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 5878 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 5879 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 5880 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 5881 - } - ] - }, - "minecraft:jungle_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 5882 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 5883 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 5884 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 5885 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 5886 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 5887 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 5888 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 5889 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 5890 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 5891, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 5892 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 5893 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 5894 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 5895 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 5896 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 5897 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 5898 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 5899 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 5900 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 5901 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 5902 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 5903 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 5904 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 5905 - } - ] - }, - "minecraft:acacia_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 5906 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 5907 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 5908 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 5909 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 5910 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 5911 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 5912 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 5913 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 5914 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 5915, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 5916 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 5917 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 5918 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 5919 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 5920 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 5921 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 5922 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 5923 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 5924 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 5925 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 5926 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 5927 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 5928 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 5929 - } - ] - }, - "minecraft:dark_oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 5930 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 5931 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 5932 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 5933 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 5934 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 5935 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 5936 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 5937 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 5938 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 5939, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 5940 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 5941 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 5942 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 5943 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 5944 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 5945 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 5946 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 5947 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 5948 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 5949 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 5950 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 5951 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 5952 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 5953 - } - ] - }, - "minecraft:skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 5954, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 5955 - }, - { - "properties": { - "rotation": "2" - }, - "id": 5956 - }, - { - "properties": { - "rotation": "3" - }, - "id": 5957 - }, - { - "properties": { - "rotation": "4" - }, - "id": 5958 - }, - { - "properties": { - "rotation": "5" - }, - "id": 5959 - }, - { - "properties": { - "rotation": "6" - }, - "id": 5960 - }, - { - "properties": { - "rotation": "7" - }, - "id": 5961 - }, - { - "properties": { - "rotation": "8" - }, - "id": 5962 - }, - { - "properties": { - "rotation": "9" - }, - "id": 5963 - }, - { - "properties": { - "rotation": "10" - }, - "id": 5964 - }, - { - "properties": { - "rotation": "11" - }, - "id": 5965 - }, - { - "properties": { - "rotation": "12" - }, - "id": 5966 - }, - { - "properties": { - "rotation": "13" - }, - "id": 5967 - }, - { - "properties": { - "rotation": "14" - }, - "id": 5968 - }, - { - "properties": { - "rotation": "15" - }, - "id": 5969 - } - ] - }, - "minecraft:skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 5970, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 5971 - }, - { - "properties": { - "facing": "west" - }, - "id": 5972 - }, - { - "properties": { - "facing": "east" - }, - "id": 5973 - } - ] - }, - "minecraft:wither_skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 5974, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 5975 - }, - { - "properties": { - "rotation": "2" - }, - "id": 5976 - }, - { - "properties": { - "rotation": "3" - }, - "id": 5977 - }, - { - "properties": { - "rotation": "4" - }, - "id": 5978 - }, - { - "properties": { - "rotation": "5" - }, - "id": 5979 - }, - { - "properties": { - "rotation": "6" - }, - "id": 5980 - }, - { - "properties": { - "rotation": "7" - }, - "id": 5981 - }, - { - "properties": { - "rotation": "8" - }, - "id": 5982 - }, - { - "properties": { - "rotation": "9" - }, - "id": 5983 - }, - { - "properties": { - "rotation": "10" - }, - "id": 5984 - }, - { - "properties": { - "rotation": "11" - }, - "id": 5985 - }, - { - "properties": { - "rotation": "12" - }, - "id": 5986 - }, - { - "properties": { - "rotation": "13" - }, - "id": 5987 - }, - { - "properties": { - "rotation": "14" - }, - "id": 5988 - }, - { - "properties": { - "rotation": "15" - }, - "id": 5989 - } - ] - }, - "minecraft:wither_skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 5990, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 5991 - }, - { - "properties": { - "facing": "west" - }, - "id": 5992 - }, - { - "properties": { - "facing": "east" - }, - "id": 5993 - } - ] - }, - "minecraft:zombie_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 5994, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 5995 - }, - { - "properties": { - "rotation": "2" - }, - "id": 5996 - }, - { - "properties": { - "rotation": "3" - }, - "id": 5997 - }, - { - "properties": { - "rotation": "4" - }, - "id": 5998 - }, - { - "properties": { - "rotation": "5" - }, - "id": 5999 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6000 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6001 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6002 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6003 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6004 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6005 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6006 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6007 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6008 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6009 - } - ] - }, - "minecraft:zombie_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6010, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6011 - }, - { - "properties": { - "facing": "west" - }, - "id": 6012 - }, - { - "properties": { - "facing": "east" - }, - "id": 6013 - } - ] - }, - "minecraft:player_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6014, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6015 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6016 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6017 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6018 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6019 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6020 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6021 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6022 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6023 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6024 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6025 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6026 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6027 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6028 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6029 - } - ] - }, - "minecraft:player_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6030, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6031 - }, - { - "properties": { - "facing": "west" - }, - "id": 6032 - }, - { - "properties": { - "facing": "east" - }, - "id": 6033 - } - ] - }, - "minecraft:creeper_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6034, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6035 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6036 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6037 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6038 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6039 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6040 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6041 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6042 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6043 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6044 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6045 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6046 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6047 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6048 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6049 - } - ] - }, - "minecraft:creeper_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6050, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6051 - }, - { - "properties": { - "facing": "west" - }, - "id": 6052 - }, - { - "properties": { - "facing": "east" - }, - "id": 6053 - } - ] - }, - "minecraft:dragon_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6054, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6055 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6056 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6057 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6058 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6059 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6060 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6061 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6062 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6063 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6064 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6065 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6066 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6067 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6068 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6069 - } - ] - }, - "minecraft:dragon_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6070, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6071 - }, - { - "properties": { - "facing": "west" - }, - "id": 6072 - }, - { - "properties": { - "facing": "east" - }, - "id": 6073 - } - ] - }, - "minecraft:anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6074, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6075 - }, - { - "properties": { - "facing": "west" - }, - "id": 6076 - }, - { - "properties": { - "facing": "east" - }, - "id": 6077 - } - ] - }, - "minecraft:chipped_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6078, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6079 - }, - { - "properties": { - "facing": "west" - }, - "id": 6080 - }, - { - "properties": { - "facing": "east" - }, - "id": 6081 - } - ] - }, - "minecraft:damaged_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6082, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6083 - }, - { - "properties": { - "facing": "west" - }, - "id": 6084 - }, - { - "properties": { - "facing": "east" - }, - "id": 6085 - } - ] - }, - "minecraft:trapped_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "type": [ - "single", - "left", - "right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "true" - }, - "id": 6086 - }, - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "false" - }, - "id": 6087, - "default": true - }, - { - "properties": { - "facing": "north", - "type": "left", - "waterlogged": "true" - }, - "id": 6088 - }, - { - "properties": { - "facing": "north", - "type": "left", - "waterlogged": "false" - }, - "id": 6089 - }, - { - "properties": { - "facing": "north", - "type": "right", - "waterlogged": "true" - }, - "id": 6090 - }, - { - "properties": { - "facing": "north", - "type": "right", - "waterlogged": "false" - }, - "id": 6091 - }, - { - "properties": { - "facing": "south", - "type": "single", - "waterlogged": "true" - }, - "id": 6092 - }, - { - "properties": { - "facing": "south", - "type": "single", - "waterlogged": "false" - }, - "id": 6093 - }, - { - "properties": { - "facing": "south", - "type": "left", - "waterlogged": "true" - }, - "id": 6094 - }, - { - "properties": { - "facing": "south", - "type": "left", - "waterlogged": "false" - }, - "id": 6095 - }, - { - "properties": { - "facing": "south", - "type": "right", - "waterlogged": "true" - }, - "id": 6096 - }, - { - "properties": { - "facing": "south", - "type": "right", - "waterlogged": "false" - }, - "id": 6097 - }, - { - "properties": { - "facing": "west", - "type": "single", - "waterlogged": "true" - }, - "id": 6098 - }, - { - "properties": { - "facing": "west", - "type": "single", - "waterlogged": "false" - }, - "id": 6099 - }, - { - "properties": { - "facing": "west", - "type": "left", - "waterlogged": "true" - }, - "id": 6100 - }, - { - "properties": { - "facing": "west", - "type": "left", - "waterlogged": "false" - }, - "id": 6101 - }, - { - "properties": { - "facing": "west", - "type": "right", - "waterlogged": "true" - }, - "id": 6102 - }, - { - "properties": { - "facing": "west", - "type": "right", - "waterlogged": "false" - }, - "id": 6103 - }, - { - "properties": { - "facing": "east", - "type": "single", - "waterlogged": "true" - }, - "id": 6104 - }, - { - "properties": { - "facing": "east", - "type": "single", - "waterlogged": "false" - }, - "id": 6105 - }, - { - "properties": { - "facing": "east", - "type": "left", - "waterlogged": "true" - }, - "id": 6106 - }, - { - "properties": { - "facing": "east", - "type": "left", - "waterlogged": "false" - }, - "id": 6107 - }, - { - "properties": { - "facing": "east", - "type": "right", - "waterlogged": "true" - }, - "id": 6108 - }, - { - "properties": { - "facing": "east", - "type": "right", - "waterlogged": "false" - }, - "id": 6109 - } - ] - }, - "minecraft:light_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "power": "0" - }, - "id": 6110, - "default": true - }, - { - "properties": { - "power": "1" - }, - "id": 6111 - }, - { - "properties": { - "power": "2" - }, - "id": 6112 - }, - { - "properties": { - "power": "3" - }, - "id": 6113 - }, - { - "properties": { - "power": "4" - }, - "id": 6114 - }, - { - "properties": { - "power": "5" - }, - "id": 6115 - }, - { - "properties": { - "power": "6" - }, - "id": 6116 - }, - { - "properties": { - "power": "7" - }, - "id": 6117 - }, - { - "properties": { - "power": "8" - }, - "id": 6118 - }, - { - "properties": { - "power": "9" - }, - "id": 6119 - }, - { - "properties": { - "power": "10" - }, - "id": 6120 - }, - { - "properties": { - "power": "11" - }, - "id": 6121 - }, - { - "properties": { - "power": "12" - }, - "id": 6122 - }, - { - "properties": { - "power": "13" - }, - "id": 6123 - }, - { - "properties": { - "power": "14" - }, - "id": 6124 - }, - { - "properties": { - "power": "15" - }, - "id": 6125 - } - ] - }, - "minecraft:heavy_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "power": "0" - }, - "id": 6126, - "default": true - }, - { - "properties": { - "power": "1" - }, - "id": 6127 - }, - { - "properties": { - "power": "2" - }, - "id": 6128 - }, - { - "properties": { - "power": "3" - }, - "id": 6129 - }, - { - "properties": { - "power": "4" - }, - "id": 6130 - }, - { - "properties": { - "power": "5" - }, - "id": 6131 - }, - { - "properties": { - "power": "6" - }, - "id": 6132 - }, - { - "properties": { - "power": "7" - }, - "id": 6133 - }, - { - "properties": { - "power": "8" - }, - "id": 6134 - }, - { - "properties": { - "power": "9" - }, - "id": 6135 - }, - { - "properties": { - "power": "10" - }, - "id": 6136 - }, - { - "properties": { - "power": "11" - }, - "id": 6137 - }, - { - "properties": { - "power": "12" - }, - "id": 6138 - }, - { - "properties": { - "power": "13" - }, - "id": 6139 - }, - { - "properties": { - "power": "14" - }, - "id": 6140 - }, - { - "properties": { - "power": "15" - }, - "id": 6141 - } - ] - }, - "minecraft:comparator": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "mode": [ - "compare", - "subtract" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "mode": "compare", - "powered": "true" - }, - "id": 6142 - }, - { - "properties": { - "facing": "north", - "mode": "compare", - "powered": "false" - }, - "id": 6143, - "default": true - }, - { - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "true" - }, - "id": 6144 - }, - { - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "false" - }, - "id": 6145 - }, - { - "properties": { - "facing": "south", - "mode": "compare", - "powered": "true" - }, - "id": 6146 - }, - { - "properties": { - "facing": "south", - "mode": "compare", - "powered": "false" - }, - "id": 6147 - }, - { - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "true" - }, - "id": 6148 - }, - { - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "false" - }, - "id": 6149 - }, - { - "properties": { - "facing": "west", - "mode": "compare", - "powered": "true" - }, - "id": 6150 - }, - { - "properties": { - "facing": "west", - "mode": "compare", - "powered": "false" - }, - "id": 6151 - }, - { - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "true" - }, - "id": 6152 - }, - { - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "false" - }, - "id": 6153 - }, - { - "properties": { - "facing": "east", - "mode": "compare", - "powered": "true" - }, - "id": 6154 - }, - { - "properties": { - "facing": "east", - "mode": "compare", - "powered": "false" - }, - "id": 6155 - }, - { - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "true" - }, - "id": 6156 - }, - { - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "false" - }, - "id": 6157 - } - ] - }, - "minecraft:daylight_detector": { - "properties": { - "inverted": [ - "true", - "false" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "inverted": "true", - "power": "0" - }, - "id": 6158 - }, - { - "properties": { - "inverted": "true", - "power": "1" - }, - "id": 6159 - }, - { - "properties": { - "inverted": "true", - "power": "2" - }, - "id": 6160 - }, - { - "properties": { - "inverted": "true", - "power": "3" - }, - "id": 6161 - }, - { - "properties": { - "inverted": "true", - "power": "4" - }, - "id": 6162 - }, - { - "properties": { - "inverted": "true", - "power": "5" - }, - "id": 6163 - }, - { - "properties": { - "inverted": "true", - "power": "6" - }, - "id": 6164 - }, - { - "properties": { - "inverted": "true", - "power": "7" - }, - "id": 6165 - }, - { - "properties": { - "inverted": "true", - "power": "8" - }, - "id": 6166 - }, - { - "properties": { - "inverted": "true", - "power": "9" - }, - "id": 6167 - }, - { - "properties": { - "inverted": "true", - "power": "10" - }, - "id": 6168 - }, - { - "properties": { - "inverted": "true", - "power": "11" - }, - "id": 6169 - }, - { - "properties": { - "inverted": "true", - "power": "12" - }, - "id": 6170 - }, - { - "properties": { - "inverted": "true", - "power": "13" - }, - "id": 6171 - }, - { - "properties": { - "inverted": "true", - "power": "14" - }, - "id": 6172 - }, - { - "properties": { - "inverted": "true", - "power": "15" - }, - "id": 6173 - }, - { - "properties": { - "inverted": "false", - "power": "0" - }, - "id": 6174, - "default": true - }, - { - "properties": { - "inverted": "false", - "power": "1" - }, - "id": 6175 - }, - { - "properties": { - "inverted": "false", - "power": "2" - }, - "id": 6176 - }, - { - "properties": { - "inverted": "false", - "power": "3" - }, - "id": 6177 - }, - { - "properties": { - "inverted": "false", - "power": "4" - }, - "id": 6178 - }, - { - "properties": { - "inverted": "false", - "power": "5" - }, - "id": 6179 - }, - { - "properties": { - "inverted": "false", - "power": "6" - }, - "id": 6180 - }, - { - "properties": { - "inverted": "false", - "power": "7" - }, - "id": 6181 - }, - { - "properties": { - "inverted": "false", - "power": "8" - }, - "id": 6182 - }, - { - "properties": { - "inverted": "false", - "power": "9" - }, - "id": 6183 - }, - { - "properties": { - "inverted": "false", - "power": "10" - }, - "id": 6184 - }, - { - "properties": { - "inverted": "false", - "power": "11" - }, - "id": 6185 - }, - { - "properties": { - "inverted": "false", - "power": "12" - }, - "id": 6186 - }, - { - "properties": { - "inverted": "false", - "power": "13" - }, - "id": 6187 - }, - { - "properties": { - "inverted": "false", - "power": "14" - }, - "id": 6188 - }, - { - "properties": { - "inverted": "false", - "power": "15" - }, - "id": 6189 - } - ] - }, - "minecraft:redstone_block": { - "states": [ - { - "id": 6190, - "default": true - } - ] - }, - "minecraft:nether_quartz_ore": { - "states": [ - { - "id": 6191, - "default": true - } - ] - }, - "minecraft:hopper": { - "properties": { - "enabled": [ - "true", - "false" - ], - "facing": [ - "down", - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "enabled": "true", - "facing": "down" - }, - "id": 6192, - "default": true - }, - { - "properties": { - "enabled": "true", - "facing": "north" - }, - "id": 6193 - }, - { - "properties": { - "enabled": "true", - "facing": "south" - }, - "id": 6194 - }, - { - "properties": { - "enabled": "true", - "facing": "west" - }, - "id": 6195 - }, - { - "properties": { - "enabled": "true", - "facing": "east" - }, - "id": 6196 - }, - { - "properties": { - "enabled": "false", - "facing": "down" - }, - "id": 6197 - }, - { - "properties": { - "enabled": "false", - "facing": "north" - }, - "id": 6198 - }, - { - "properties": { - "enabled": "false", - "facing": "south" - }, - "id": 6199 - }, - { - "properties": { - "enabled": "false", - "facing": "west" - }, - "id": 6200 - }, - { - "properties": { - "enabled": "false", - "facing": "east" - }, - "id": 6201 - } - ] - }, - "minecraft:quartz_block": { - "states": [ - { - "id": 6202, - "default": true - } - ] - }, - "minecraft:chiseled_quartz_block": { - "states": [ - { - "id": 6203, - "default": true - } - ] - }, - "minecraft:quartz_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 6204 - }, - { - "properties": { - "axis": "y" - }, - "id": 6205, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 6206 - } - ] - }, - "minecraft:quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6207 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6208 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6209 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6210 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6211 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6212 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6213 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6214 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6215 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6216 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6217 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6218, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6219 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6220 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6221 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6222 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6223 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6224 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6225 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6226 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6227 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6228 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6229 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6230 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6231 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6232 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6233 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6234 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6235 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6236 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6237 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6238 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6239 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6240 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6241 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6242 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6243 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6244 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6245 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6246 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6247 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6248 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6249 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6250 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6251 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6252 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6253 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6254 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6255 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6256 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6257 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6258 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6259 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6260 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6261 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6262 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6263 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6264 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6265 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6266 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6267 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6268 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6269 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6270 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6271 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6272 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6273 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6274 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6275 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6276 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6277 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6278 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6279 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6280 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6281 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6282 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6283 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6284 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6285 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6286 - } - ] - }, - "minecraft:activator_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - "states": [ - { - "properties": { - "powered": "true", - "shape": "north_south" - }, - "id": 6287 - }, - { - "properties": { - "powered": "true", - "shape": "east_west" - }, - "id": 6288 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east" - }, - "id": 6289 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west" - }, - "id": 6290 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north" - }, - "id": 6291 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south" - }, - "id": 6292 - }, - { - "properties": { - "powered": "false", - "shape": "north_south" - }, - "id": 6293, - "default": true - }, - { - "properties": { - "powered": "false", - "shape": "east_west" - }, - "id": 6294 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east" - }, - "id": 6295 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west" - }, - "id": 6296 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north" - }, - "id": 6297 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south" - }, - "id": 6298 - } - ] - }, - "minecraft:dropper": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "triggered": "true" - }, - "id": 6299 - }, - { - "properties": { - "facing": "north", - "triggered": "false" - }, - "id": 6300, - "default": true - }, - { - "properties": { - "facing": "east", - "triggered": "true" - }, - "id": 6301 - }, - { - "properties": { - "facing": "east", - "triggered": "false" - }, - "id": 6302 - }, - { - "properties": { - "facing": "south", - "triggered": "true" - }, - "id": 6303 - }, - { - "properties": { - "facing": "south", - "triggered": "false" - }, - "id": 6304 - }, - { - "properties": { - "facing": "west", - "triggered": "true" - }, - "id": 6305 - }, - { - "properties": { - "facing": "west", - "triggered": "false" - }, - "id": 6306 - }, - { - "properties": { - "facing": "up", - "triggered": "true" - }, - "id": 6307 - }, - { - "properties": { - "facing": "up", - "triggered": "false" - }, - "id": 6308 - }, - { - "properties": { - "facing": "down", - "triggered": "true" - }, - "id": 6309 - }, - { - "properties": { - "facing": "down", - "triggered": "false" - }, - "id": 6310 - } - ] - }, - "minecraft:white_terracotta": { - "states": [ - { - "id": 6311, - "default": true - } - ] - }, - "minecraft:orange_terracotta": { - "states": [ - { - "id": 6312, - "default": true - } - ] - }, - "minecraft:magenta_terracotta": { - "states": [ - { - "id": 6313, - "default": true - } - ] - }, - "minecraft:light_blue_terracotta": { - "states": [ - { - "id": 6314, - "default": true - } - ] - }, - "minecraft:yellow_terracotta": { - "states": [ - { - "id": 6315, - "default": true - } - ] - }, - "minecraft:lime_terracotta": { - "states": [ - { - "id": 6316, - "default": true - } - ] - }, - "minecraft:pink_terracotta": { - "states": [ - { - "id": 6317, - "default": true - } - ] - }, - "minecraft:gray_terracotta": { - "states": [ - { - "id": 6318, - "default": true - } - ] - }, - "minecraft:light_gray_terracotta": { - "states": [ - { - "id": 6319, - "default": true - } - ] - }, - "minecraft:cyan_terracotta": { - "states": [ - { - "id": 6320, - "default": true - } - ] - }, - "minecraft:purple_terracotta": { - "states": [ - { - "id": 6321, - "default": true - } - ] - }, - "minecraft:blue_terracotta": { - "states": [ - { - "id": 6322, - "default": true - } - ] - }, - "minecraft:brown_terracotta": { - "states": [ - { - "id": 6323, - "default": true - } - ] - }, - "minecraft:green_terracotta": { - "states": [ - { - "id": 6324, - "default": true - } - ] - }, - "minecraft:red_terracotta": { - "states": [ - { - "id": 6325, - "default": true - } - ] - }, - "minecraft:black_terracotta": { - "states": [ - { - "id": 6326, - "default": true - } - ] - }, - "minecraft:white_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6327 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6328 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6329 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6330 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6331 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6332 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6333 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6334 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6335 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6336 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6337 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6338 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6339 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6340 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6341 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6342 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6343 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6344 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6345 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6346 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6347 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6348 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6349 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6350 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6351 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6352 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6353 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6354 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6355 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6356 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6357 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6358, - "default": true - } - ] - }, - "minecraft:orange_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6359 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6360 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6361 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6362 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6363 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6364 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6365 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6366 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6367 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6368 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6369 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6370 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6371 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6372 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6373 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6374 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6375 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6376 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6377 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6378 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6379 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6380 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6381 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6382 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6383 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6384 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6385 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6386 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6387 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6388 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6389 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6390, - "default": true - } - ] - }, - "minecraft:magenta_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6391 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6392 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6393 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6394 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6395 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6396 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6397 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6398 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6399 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6400 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6401 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6402 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6403 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6404 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6405 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6406 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6407 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6408 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6409 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6410 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6411 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6412 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6413 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6414 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6415 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6416 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6417 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6418 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6419 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6420 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6421 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6422, - "default": true - } - ] - }, - "minecraft:light_blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6423 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6424 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6425 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6426 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6427 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6428 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6429 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6430 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6431 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6432 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6433 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6434 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6435 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6436 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6437 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6438 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6439 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6440 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6441 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6442 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6443 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6444 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6445 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6446 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6447 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6448 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6449 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6450 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6451 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6452 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6453 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6454, - "default": true - } - ] - }, - "minecraft:yellow_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6455 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6456 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6457 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6458 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6459 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6460 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6461 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6462 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6463 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6464 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6465 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6466 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6467 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6468 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6469 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6470 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6471 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6472 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6473 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6474 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6475 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6476 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6477 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6478 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6479 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6480 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6481 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6482 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6483 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6484 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6485 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6486, - "default": true - } - ] - }, - "minecraft:lime_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6487 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6488 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6489 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6490 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6491 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6492 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6493 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6494 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6495 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6496 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6497 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6498 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6499 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6500 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6501 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6502 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6503 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6504 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6505 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6506 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6507 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6508 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6509 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6510 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6511 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6512 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6513 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6514 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6515 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6516 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6517 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6518, - "default": true - } - ] - }, - "minecraft:pink_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6519 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6520 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6521 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6522 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6523 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6524 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6525 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6526 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6527 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6528 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6529 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6530 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6531 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6532 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6533 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6534 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6535 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6536 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6537 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6538 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6539 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6540 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6541 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6542 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6543 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6544 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6545 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6546 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6547 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6548 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6549 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6550, - "default": true - } - ] - }, - "minecraft:gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6551 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6552 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6553 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6554 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6555 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6556 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6557 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6558 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6559 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6560 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6561 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6562 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6563 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6564 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6565 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6566 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6567 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6568 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6569 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6570 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6571 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6572 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6573 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6574 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6575 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6576 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6577 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6578 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6579 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6580 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6581 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6582, - "default": true - } - ] - }, - "minecraft:light_gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6583 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6584 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6585 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6586 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6587 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6588 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6589 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6590 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6591 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6592 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6593 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6594 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6595 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6596 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6597 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6598 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6599 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6600 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6601 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6602 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6603 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6604 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6605 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6606 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6607 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6608 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6609 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6610 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6611 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6612 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6613 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6614, - "default": true - } - ] - }, - "minecraft:cyan_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6615 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6616 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6617 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6618 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6619 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6620 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6621 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6622 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6623 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6624 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6625 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6626 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6627 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6628 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6629 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6630 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6631 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6632 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6633 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6634 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6635 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6636 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6637 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6638 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6639 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6640 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6641 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6642 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6643 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6644 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6645 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6646, - "default": true - } - ] - }, - "minecraft:purple_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6647 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6648 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6649 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6650 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6651 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6652 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6653 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6654 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6655 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6656 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6657 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6658 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6659 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6660 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6661 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6662 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6663 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6664 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6665 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6666 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6667 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6668 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6669 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6670 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6671 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6672 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6673 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6674 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6675 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6676 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6677 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6678, - "default": true - } - ] - }, - "minecraft:blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6679 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6680 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6681 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6682 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6683 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6684 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6685 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6686 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6687 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6688 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6689 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6690 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6691 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6692 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6693 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6694 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6695 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6696 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6697 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6698 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6699 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6700 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6701 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6702 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6703 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6704 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6705 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6706 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6707 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6708 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6709 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6710, - "default": true - } - ] - }, - "minecraft:brown_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6711 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6712 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6713 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6714 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6715 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6716 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6717 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6718 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6719 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6720 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6721 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6722 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6723 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6724 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6725 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6726 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6727 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6728 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6729 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6730 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6731 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6732 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6733 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6734 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6735 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6736 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6737 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6738 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6739 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6740 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6741 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6742, - "default": true - } - ] - }, - "minecraft:green_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6743 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6744 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6745 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6746 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6747 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6748 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6749 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6750 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6751 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6752 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6753 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6754 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6755 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6756 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6757 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6758 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6759 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6760 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6761 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6762 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6763 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6764 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6765 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6766 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6767 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6768 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6769 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6770 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6771 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6772 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6773 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6774, - "default": true - } - ] - }, - "minecraft:red_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6775 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6776 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6777 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6778 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6779 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6780 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6781 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6782 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6783 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6784 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6785 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6786 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6787 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6788 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6789 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6790 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6791 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6792 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6793 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6794 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6795 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6796 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6797 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6798 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6799 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6800 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6801 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6802 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6803 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6804 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6805 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6806, - "default": true - } - ] - }, - "minecraft:black_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6807 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6808 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6809 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6810 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6811 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6812 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6813 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6814 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6815 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6816 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6817 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6818 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6819 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6820 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6821 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6822 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6823 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6824 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6825 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6826 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6827 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6828 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6829 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6830 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 6831 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 6832 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 6833 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 6834 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 6835 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 6836 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 6837 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 6838, - "default": true - } - ] - }, - "minecraft:acacia_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6839 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6840 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6841 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6842 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6843 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6844 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6845 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6846 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6847 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6848 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6849 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6850, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6851 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6852 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6853 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6854 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6855 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6856 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6857 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6858 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6859 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6860 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6861 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6862 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6863 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6864 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6865 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6866 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6867 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6868 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6869 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6870 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6871 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6872 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6873 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6874 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6875 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6876 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6877 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6878 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6879 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6880 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6881 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6882 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6883 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6884 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6885 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6886 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6887 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6888 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6889 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6890 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6891 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6892 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6893 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6894 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6895 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6896 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6897 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6898 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6899 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6900 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6901 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6902 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6903 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6904 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6905 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6906 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6907 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6908 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6909 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6910 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6911 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6912 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6913 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6914 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6915 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6916 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6917 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6918 - } - ] - }, - "minecraft:dark_oak_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6919 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6920 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6921 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6922 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6923 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6924 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6925 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6926 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6927 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6928 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6929 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6930, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6931 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6932 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6933 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6934 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6935 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6936 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6937 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6938 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6939 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6940 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6941 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6942 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6943 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6944 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6945 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6946 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6947 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6948 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6949 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6950 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6951 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6952 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6953 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6954 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6955 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6956 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6957 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6958 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6959 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6960 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6961 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6962 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6963 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6964 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6965 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6966 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6967 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6968 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6969 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6970 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6971 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6972 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6973 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6974 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6975 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6976 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6977 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6978 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6979 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6980 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6981 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6982 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6983 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6984 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6985 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6986 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6987 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6988 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6989 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6990 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6991 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6992 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6993 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6994 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6995 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6996 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6997 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6998 - } - ] - }, - "minecraft:slime_block": { - "states": [ - { - "id": 6999, - "default": true - } - ] - }, - "minecraft:barrier": { - "states": [ - { - "id": 7000, - "default": true - } - ] - }, - "minecraft:iron_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7001 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7002 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7003 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7004 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7005 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7006 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7007 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7008 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7009 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7010 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7011 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7012 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7013 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7014 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7015 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7016, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7017 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7018 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7019 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7020 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7021 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7022 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7023 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7024 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7025 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7026 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7027 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7028 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7029 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7030 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7031 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7032 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7033 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7034 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7035 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7036 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7037 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7038 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7039 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7040 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7041 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7042 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7043 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7044 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7045 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7046 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7047 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7048 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7049 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7050 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7051 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7052 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7053 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7054 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7055 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7056 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7057 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7058 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7059 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7060 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7061 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7062 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7063 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7064 - } - ] - }, - "minecraft:prismarine": { - "states": [ - { - "id": 7065, - "default": true - } - ] - }, - "minecraft:prismarine_bricks": { - "states": [ - { - "id": 7066, - "default": true - } - ] - }, - "minecraft:dark_prismarine": { - "states": [ - { - "id": 7067, - "default": true - } - ] - }, - "minecraft:prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7068 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7069 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7070 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7071 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7072 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7073 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7074 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7075 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7076 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7077 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7078 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7079, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7080 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7081 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7082 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7083 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7084 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7085 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7086 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7087 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7088 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7089 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7090 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7091 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7092 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7093 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7094 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7095 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7096 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7097 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7098 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7099 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7100 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7101 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7102 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7103 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7104 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7105 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7106 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7107 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7108 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7109 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7110 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7111 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7112 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7113 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7114 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7115 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7116 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7117 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7118 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7119 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7120 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7121 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7122 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7123 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7124 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7125 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7126 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7127 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7128 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7129 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7130 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7131 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7132 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7133 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7134 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7135 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7136 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7137 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7138 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7139 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7140 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7141 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7142 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7143 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7144 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7145 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7146 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7147 - } - ] - }, - "minecraft:prismarine_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7148 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7149 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7150 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7151 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7152 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7153 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7154 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7155 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7156 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7157 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7158 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7159, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7160 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7161 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7162 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7163 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7164 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7165 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7166 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7167 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7168 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7169 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7170 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7171 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7172 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7173 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7174 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7175 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7176 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7177 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7178 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7179 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7180 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7181 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7182 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7183 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7184 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7185 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7186 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7187 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7188 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7189 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7190 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7191 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7192 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7193 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7194 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7195 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7196 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7197 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7198 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7199 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7200 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7201 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7202 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7203 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7204 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7205 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7206 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7207 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7208 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7209 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7210 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7211 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7212 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7213 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7214 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7215 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7216 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7217 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7218 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7219 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7220 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7221 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7222 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7223 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7224 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7225 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7226 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7227 - } - ] - }, - "minecraft:dark_prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7228 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7229 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7230 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7231 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7232 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7233 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7234 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7235 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7236 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7237 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7238 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7239, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7240 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7241 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7242 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7243 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7244 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7245 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7246 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7247 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7248 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7249 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7250 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7251 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7252 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7253 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7254 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7255 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7256 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7257 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7258 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7259 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7260 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7261 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7262 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7263 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7264 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7265 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7266 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7267 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7268 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7269 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7270 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7271 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7272 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7273 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7274 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7275 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7276 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7277 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7278 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7279 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7280 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7281 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7282 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7283 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7284 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7285 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7286 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7287 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7288 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7289 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7290 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7291 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7292 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7293 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7294 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7295 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7296 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7297 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7298 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7299 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7300 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7301 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7302 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7303 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7304 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7305 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7306 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7307 - } - ] - }, - "minecraft:prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7308 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7309 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7310 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7311, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7312 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7313 - } - ] - }, - "minecraft:prismarine_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7314 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7315 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7316 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7317, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7318 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7319 - } - ] - }, - "minecraft:dark_prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7320 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7321 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7322 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7323, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7324 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7325 - } - ] - }, - "minecraft:sea_lantern": { - "states": [ - { - "id": 7326, - "default": true - } - ] - }, - "minecraft:hay_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 7327 - }, - { - "properties": { - "axis": "y" - }, - "id": 7328, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 7329 - } - ] - }, - "minecraft:white_carpet": { - "states": [ - { - "id": 7330, - "default": true - } - ] - }, - "minecraft:orange_carpet": { - "states": [ - { - "id": 7331, - "default": true - } - ] - }, - "minecraft:magenta_carpet": { - "states": [ - { - "id": 7332, - "default": true - } - ] - }, - "minecraft:light_blue_carpet": { - "states": [ - { - "id": 7333, - "default": true - } - ] - }, - "minecraft:yellow_carpet": { - "states": [ - { - "id": 7334, - "default": true - } - ] - }, - "minecraft:lime_carpet": { - "states": [ - { - "id": 7335, - "default": true - } - ] - }, - "minecraft:pink_carpet": { - "states": [ - { - "id": 7336, - "default": true - } - ] - }, - "minecraft:gray_carpet": { - "states": [ - { - "id": 7337, - "default": true - } - ] - }, - "minecraft:light_gray_carpet": { - "states": [ - { - "id": 7338, - "default": true - } - ] - }, - "minecraft:cyan_carpet": { - "states": [ - { - "id": 7339, - "default": true - } - ] - }, - "minecraft:purple_carpet": { - "states": [ - { - "id": 7340, - "default": true - } - ] - }, - "minecraft:blue_carpet": { - "states": [ - { - "id": 7341, - "default": true - } - ] - }, - "minecraft:brown_carpet": { - "states": [ - { - "id": 7342, - "default": true - } - ] - }, - "minecraft:green_carpet": { - "states": [ - { - "id": 7343, - "default": true - } - ] - }, - "minecraft:red_carpet": { - "states": [ - { - "id": 7344, - "default": true - } - ] - }, - "minecraft:black_carpet": { - "states": [ - { - "id": 7345, - "default": true - } - ] - }, - "minecraft:terracotta": { - "states": [ - { - "id": 7346, - "default": true - } - ] - }, - "minecraft:coal_block": { - "states": [ - { - "id": 7347, - "default": true - } - ] - }, - "minecraft:packed_ice": { - "states": [ - { - "id": 7348, - "default": true - } - ] - }, - "minecraft:sunflower": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 7349 - }, - { - "properties": { - "half": "lower" - }, - "id": 7350, - "default": true - } - ] - }, - "minecraft:lilac": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 7351 - }, - { - "properties": { - "half": "lower" - }, - "id": 7352, - "default": true - } - ] - }, - "minecraft:rose_bush": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 7353 - }, - { - "properties": { - "half": "lower" - }, - "id": 7354, - "default": true - } - ] - }, - "minecraft:peony": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 7355 - }, - { - "properties": { - "half": "lower" - }, - "id": 7356, - "default": true - } - ] - }, - "minecraft:tall_grass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 7357 - }, - { - "properties": { - "half": "lower" - }, - "id": 7358, - "default": true - } - ] - }, - "minecraft:large_fern": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 7359 - }, - { - "properties": { - "half": "lower" - }, - "id": 7360, - "default": true - } - ] - }, - "minecraft:white_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7361, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7362 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7363 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7364 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7365 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7366 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7367 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7368 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7369 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7370 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7371 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7372 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7373 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7374 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7375 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7376 - } - ] - }, - "minecraft:orange_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7377, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7378 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7379 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7380 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7381 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7382 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7383 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7384 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7385 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7386 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7387 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7388 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7389 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7390 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7391 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7392 - } - ] - }, - "minecraft:magenta_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7393, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7394 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7395 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7396 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7397 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7398 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7399 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7400 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7401 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7402 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7403 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7404 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7405 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7406 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7407 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7408 - } - ] - }, - "minecraft:light_blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7409, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7410 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7411 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7412 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7413 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7414 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7415 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7416 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7417 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7418 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7419 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7420 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7421 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7422 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7423 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7424 - } - ] - }, - "minecraft:yellow_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7425, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7426 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7427 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7428 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7429 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7430 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7431 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7432 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7433 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7434 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7435 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7436 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7437 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7438 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7439 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7440 - } - ] - }, - "minecraft:lime_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7441, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7442 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7443 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7444 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7445 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7446 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7447 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7448 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7449 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7450 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7451 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7452 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7453 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7454 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7455 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7456 - } - ] - }, - "minecraft:pink_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7457, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7458 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7459 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7460 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7461 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7462 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7463 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7464 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7465 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7466 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7467 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7468 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7469 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7470 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7471 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7472 - } - ] - }, - "minecraft:gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7473, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7474 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7475 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7476 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7477 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7478 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7479 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7480 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7481 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7482 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7483 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7484 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7485 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7486 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7487 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7488 - } - ] - }, - "minecraft:light_gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7489, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7490 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7491 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7492 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7493 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7494 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7495 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7496 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7497 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7498 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7499 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7500 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7501 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7502 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7503 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7504 - } - ] - }, - "minecraft:cyan_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7505, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7506 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7507 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7508 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7509 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7510 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7511 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7512 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7513 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7514 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7515 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7516 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7517 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7518 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7519 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7520 - } - ] - }, - "minecraft:purple_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7521, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7522 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7523 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7524 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7525 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7526 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7527 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7528 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7529 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7530 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7531 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7532 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7533 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7534 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7535 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7536 - } - ] - }, - "minecraft:blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7537, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7538 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7539 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7540 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7541 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7542 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7543 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7544 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7545 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7546 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7547 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7548 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7549 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7550 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7551 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7552 - } - ] - }, - "minecraft:brown_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7553, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7554 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7555 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7556 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7557 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7558 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7559 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7560 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7561 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7562 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7563 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7564 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7565 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7566 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7567 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7568 - } - ] - }, - "minecraft:green_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7569, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7570 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7571 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7572 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7573 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7574 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7575 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7576 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7577 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7578 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7579 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7580 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7581 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7582 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7583 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7584 - } - ] - }, - "minecraft:red_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7585, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7586 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7587 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7588 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7589 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7590 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7591 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7592 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7593 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7594 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7595 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7596 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7597 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7598 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7599 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7600 - } - ] - }, - "minecraft:black_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 7601, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 7602 - }, - { - "properties": { - "rotation": "2" - }, - "id": 7603 - }, - { - "properties": { - "rotation": "3" - }, - "id": 7604 - }, - { - "properties": { - "rotation": "4" - }, - "id": 7605 - }, - { - "properties": { - "rotation": "5" - }, - "id": 7606 - }, - { - "properties": { - "rotation": "6" - }, - "id": 7607 - }, - { - "properties": { - "rotation": "7" - }, - "id": 7608 - }, - { - "properties": { - "rotation": "8" - }, - "id": 7609 - }, - { - "properties": { - "rotation": "9" - }, - "id": 7610 - }, - { - "properties": { - "rotation": "10" - }, - "id": 7611 - }, - { - "properties": { - "rotation": "11" - }, - "id": 7612 - }, - { - "properties": { - "rotation": "12" - }, - "id": 7613 - }, - { - "properties": { - "rotation": "13" - }, - "id": 7614 - }, - { - "properties": { - "rotation": "14" - }, - "id": 7615 - }, - { - "properties": { - "rotation": "15" - }, - "id": 7616 - } - ] - }, - "minecraft:white_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7617, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7618 - }, - { - "properties": { - "facing": "west" - }, - "id": 7619 - }, - { - "properties": { - "facing": "east" - }, - "id": 7620 - } - ] - }, - "minecraft:orange_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7621, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7622 - }, - { - "properties": { - "facing": "west" - }, - "id": 7623 - }, - { - "properties": { - "facing": "east" - }, - "id": 7624 - } - ] - }, - "minecraft:magenta_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7625, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7626 - }, - { - "properties": { - "facing": "west" - }, - "id": 7627 - }, - { - "properties": { - "facing": "east" - }, - "id": 7628 - } - ] - }, - "minecraft:light_blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7629, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7630 - }, - { - "properties": { - "facing": "west" - }, - "id": 7631 - }, - { - "properties": { - "facing": "east" - }, - "id": 7632 - } - ] - }, - "minecraft:yellow_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7633, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7634 - }, - { - "properties": { - "facing": "west" - }, - "id": 7635 - }, - { - "properties": { - "facing": "east" - }, - "id": 7636 - } - ] - }, - "minecraft:lime_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7637, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7638 - }, - { - "properties": { - "facing": "west" - }, - "id": 7639 - }, - { - "properties": { - "facing": "east" - }, - "id": 7640 - } - ] - }, - "minecraft:pink_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7641, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7642 - }, - { - "properties": { - "facing": "west" - }, - "id": 7643 - }, - { - "properties": { - "facing": "east" - }, - "id": 7644 - } - ] - }, - "minecraft:gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7645, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7646 - }, - { - "properties": { - "facing": "west" - }, - "id": 7647 - }, - { - "properties": { - "facing": "east" - }, - "id": 7648 - } - ] - }, - "minecraft:light_gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7649, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7650 - }, - { - "properties": { - "facing": "west" - }, - "id": 7651 - }, - { - "properties": { - "facing": "east" - }, - "id": 7652 - } - ] - }, - "minecraft:cyan_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7653, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7654 - }, - { - "properties": { - "facing": "west" - }, - "id": 7655 - }, - { - "properties": { - "facing": "east" - }, - "id": 7656 - } - ] - }, - "minecraft:purple_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7657, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7658 - }, - { - "properties": { - "facing": "west" - }, - "id": 7659 - }, - { - "properties": { - "facing": "east" - }, - "id": 7660 - } - ] - }, - "minecraft:blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7661, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7662 - }, - { - "properties": { - "facing": "west" - }, - "id": 7663 - }, - { - "properties": { - "facing": "east" - }, - "id": 7664 - } - ] - }, - "minecraft:brown_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7665, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7666 - }, - { - "properties": { - "facing": "west" - }, - "id": 7667 - }, - { - "properties": { - "facing": "east" - }, - "id": 7668 - } - ] - }, - "minecraft:green_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7669, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7670 - }, - { - "properties": { - "facing": "west" - }, - "id": 7671 - }, - { - "properties": { - "facing": "east" - }, - "id": 7672 - } - ] - }, - "minecraft:red_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7673, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7674 - }, - { - "properties": { - "facing": "west" - }, - "id": 7675 - }, - { - "properties": { - "facing": "east" - }, - "id": 7676 - } - ] - }, - "minecraft:black_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 7677, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 7678 - }, - { - "properties": { - "facing": "west" - }, - "id": 7679 - }, - { - "properties": { - "facing": "east" - }, - "id": 7680 - } - ] - }, - "minecraft:red_sandstone": { - "states": [ - { - "id": 7681, - "default": true - } - ] - }, - "minecraft:chiseled_red_sandstone": { - "states": [ - { - "id": 7682, - "default": true - } - ] - }, - "minecraft:cut_red_sandstone": { - "states": [ - { - "id": 7683, - "default": true - } - ] - }, - "minecraft:red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7684 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7685 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7686 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7687 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7688 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7689 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7690 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7691 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7692 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7693 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7694 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7695, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7696 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7697 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7698 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7699 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7700 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7701 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7702 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7703 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7704 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7705 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7706 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7707 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7708 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7709 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7710 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7711 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7712 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7713 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7714 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7715 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7716 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7717 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7718 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7719 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7720 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7721 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7722 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7723 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7724 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7725 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7726 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7727 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7728 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7729 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7730 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7731 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7732 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7733 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7734 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7735 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7736 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7737 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7738 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7739 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7740 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7741 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7742 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7743 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7744 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7745 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7746 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7747 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7748 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7749 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7750 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7751 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7752 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7753 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7754 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7755 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7756 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7757 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7758 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7759 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7760 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7761 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7762 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7763 - } - ] - }, - "minecraft:oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7764 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7765 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7766 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7767, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7768 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7769 - } - ] - }, - "minecraft:spruce_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7770 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7771 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7772 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7773, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7774 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7775 - } - ] - }, - "minecraft:birch_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7776 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7777 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7778 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7779, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7780 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7781 - } - ] - }, - "minecraft:jungle_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7782 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7783 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7784 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7785, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7786 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7787 - } - ] - }, - "minecraft:acacia_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7788 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7789 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7790 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7791, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7792 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7793 - } - ] - }, - "minecraft:dark_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7794 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7795 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7796 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7797, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7798 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7799 - } - ] - }, - "minecraft:stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7800 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7801 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7802 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7803, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7804 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7805 - } - ] - }, - "minecraft:smooth_stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7806 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7807 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7808 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7809, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7810 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7811 - } - ] - }, - "minecraft:sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7812 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7813 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7814 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7815, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7816 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7817 - } - ] - }, - "minecraft:cut_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7818 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7819 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7820 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7821, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7822 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7823 - } - ] - }, - "minecraft:petrified_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7824 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7825 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7826 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7827, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7828 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7829 - } - ] - }, - "minecraft:cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7830 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7831 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7832 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7833, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7834 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7835 - } - ] - }, - "minecraft:brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7836 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7837 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7838 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7839, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7840 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7841 - } - ] - }, - "minecraft:stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7842 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7843 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7844 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7845, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7846 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7847 - } - ] - }, - "minecraft:nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7848 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7849 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7850 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7851, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7852 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7853 - } - ] - }, - "minecraft:quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7854 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7855 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7856 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7857, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7858 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7859 - } - ] - }, - "minecraft:red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7860 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7861 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7862 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7863, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7864 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7865 - } - ] - }, - "minecraft:cut_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7866 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7867 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7868 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7869, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7870 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7871 - } - ] - }, - "minecraft:purpur_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 7872 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 7873 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 7874 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 7875, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 7876 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 7877 - } - ] - }, - "minecraft:smooth_stone": { - "states": [ - { - "id": 7878, - "default": true - } - ] - }, - "minecraft:smooth_sandstone": { - "states": [ - { - "id": 7879, - "default": true - } - ] - }, - "minecraft:smooth_quartz": { - "states": [ - { - "id": 7880, - "default": true - } - ] - }, - "minecraft:smooth_red_sandstone": { - "states": [ - { - "id": 7881, - "default": true - } - ] - }, - "minecraft:spruce_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7882 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7883 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7884 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7885 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7886 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7887 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7888 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7889, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7890 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7891 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7892 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7893 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7894 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7895 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7896 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7897 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7898 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7899 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7900 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7901 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7902 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7903 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7904 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7905 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7906 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7907 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7908 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7909 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7910 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7911 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7912 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7913 - } - ] - }, - "minecraft:birch_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7914 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7915 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7916 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7917 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7918 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7919 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7920 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7921, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7922 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7923 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7924 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7925 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7926 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7927 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7928 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7929 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7930 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7931 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7932 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7933 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7934 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7935 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7936 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7937 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7938 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7939 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7940 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7941 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7942 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7943 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7944 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7945 - } - ] - }, - "minecraft:jungle_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7946 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7947 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7948 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7949 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7950 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7951 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7952 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7953, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7954 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7955 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7956 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7957 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7958 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7959 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7960 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7961 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7962 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7963 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7964 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7965 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7966 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7967 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7968 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7969 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7970 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7971 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7972 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7973 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7974 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7975 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7976 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7977 - } - ] - }, - "minecraft:acacia_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7978 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7979 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7980 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7981 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7982 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7983 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7984 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7985, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7986 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7987 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7988 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7989 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7990 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7991 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 7992 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 7993 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 7994 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 7995 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 7996 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 7997 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 7998 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 7999 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8000 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8001 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8002 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8003 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8004 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8005 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8006 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8007 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8008 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8009 - } - ] - }, - "minecraft:dark_oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8010 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8011 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8012 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8013 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8014 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8015 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8016 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8017, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8018 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8019 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8020 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8021 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8022 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8023 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8024 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8025 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8026 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8027 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8028 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8029 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8030 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8031 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8032 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8033 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8034 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8035 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8036 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8037 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8038 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8039 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8040 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8041 - } - ] - }, - "minecraft:spruce_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8042 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8043 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8044 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8045 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8046 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8047 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8048 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8049 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8050 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8051 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8052 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8053 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8054 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8055 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8056 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8057 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8058 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8059 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8060 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8061 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8062 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8063 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8064 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8065 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8066 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8067 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8068 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8069 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8070 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8071 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8072 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8073, - "default": true - } - ] - }, - "minecraft:birch_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8074 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8075 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8076 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8077 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8078 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8079 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8080 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8081 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8082 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8083 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8084 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8085 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8086 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8087 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8088 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8089 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8090 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8091 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8092 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8093 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8094 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8095 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8096 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8097 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8098 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8099 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8100 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8101 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8102 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8103 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8104 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8105, - "default": true - } - ] - }, - "minecraft:jungle_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8106 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8107 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8108 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8109 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8110 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8111 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8112 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8113 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8114 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8115 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8116 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8117 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8118 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8119 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8120 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8121 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8122 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8123 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8124 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8125 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8126 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8127 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8128 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8129 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8130 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8131 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8132 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8133 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8134 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8135 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8136 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8137, - "default": true - } - ] - }, - "minecraft:acacia_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8138 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8139 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8140 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8141 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8142 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8143 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8144 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8145 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8146 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8147 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8148 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8149 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8150 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8151 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8152 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8153 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8154 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8155 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8156 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8157 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8158 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8159 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8160 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8161 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8162 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8163 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8164 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8165 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8166 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8167 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8168 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8169, - "default": true - } - ] - }, - "minecraft:dark_oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8170 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8171 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8172 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8173 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8174 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8175 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8176 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8177 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8178 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8179 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8180 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8181 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8182 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8183 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8184 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8185 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8186 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8187 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8188 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8189 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8190 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8191 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8192 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8193 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8194 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8195 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8196 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8197 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8198 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8199 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8200 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8201, - "default": true - } - ] - }, - "minecraft:spruce_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8202 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8203 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8204 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8205 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8206 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8207 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8208 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8209 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8210 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8211 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8212 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8213, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8214 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8215 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8216 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8217 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8218 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8219 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8220 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8221 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8222 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8223 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8224 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8225 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8226 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8227 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8228 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8229 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8230 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8231 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8232 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8233 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8234 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8235 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8236 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8237 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8238 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8239 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8240 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8241 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8242 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8243 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8244 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8245 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8246 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8247 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8248 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8249 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8250 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8251 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8252 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8253 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8254 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8255 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8256 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8257 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8258 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8259 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8260 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8261 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8262 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8263 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8264 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8265 - } - ] - }, - "minecraft:birch_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8266 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8267 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8268 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8269 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8270 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8271 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8272 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8273 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8274 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8275 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8276 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8277, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8278 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8279 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8280 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8281 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8282 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8283 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8284 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8285 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8286 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8287 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8288 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8289 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8290 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8291 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8292 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8293 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8294 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8295 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8296 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8297 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8298 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8299 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8300 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8301 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8302 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8303 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8304 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8305 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8306 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8307 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8308 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8309 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8310 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8311 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8312 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8313 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8314 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8315 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8316 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8317 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8318 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8319 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8320 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8321 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8322 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8323 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8324 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8325 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8326 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8327 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8328 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8329 - } - ] - }, - "minecraft:jungle_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8330 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8331 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8332 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8333 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8334 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8335 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8336 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8337 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8338 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8339 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8340 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8341, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8342 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8343 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8344 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8345 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8346 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8347 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8348 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8349 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8350 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8351 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8352 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8353 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8354 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8355 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8356 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8357 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8358 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8359 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8360 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8361 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8362 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8363 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8364 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8365 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8366 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8367 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8368 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8369 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8370 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8371 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8372 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8373 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8374 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8375 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8376 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8377 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8378 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8379 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8380 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8381 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8382 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8383 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8384 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8385 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8386 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8387 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8388 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8389 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8390 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8391 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8392 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8393 - } - ] - }, - "minecraft:acacia_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8394 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8395 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8396 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8397 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8398 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8399 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8400 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8401 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8402 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8403 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8404 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8405, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8406 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8407 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8408 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8409 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8410 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8411 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8412 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8413 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8414 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8415 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8416 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8417 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8418 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8419 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8420 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8421 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8422 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8423 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8424 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8425 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8426 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8427 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8428 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8429 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8430 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8431 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8432 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8433 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8434 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8435 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8436 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8437 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8438 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8439 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8440 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8441 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8442 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8443 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8444 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8445 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8446 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8447 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8448 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8449 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8450 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8451 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8452 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8453 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8454 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8455 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8456 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8457 - } - ] - }, - "minecraft:dark_oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8458 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8459 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8460 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8461 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8462 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8463 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8464 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8465 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8466 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8467 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8468 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8469, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8470 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8471 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8472 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8473 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8474 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8475 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8476 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8477 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8478 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8479 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8480 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8481 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8482 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8483 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8484 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8485 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8486 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8487 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8488 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8489 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8490 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8491 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8492 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8493 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8494 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8495 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8496 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8497 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8498 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8499 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8500 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8501 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8502 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8503 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8504 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8505 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8506 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8507 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8508 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8509 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8510 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8511 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8512 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8513 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8514 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8515 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8516 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8517 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8518 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8519 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8520 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8521 - } - ] - }, - "minecraft:end_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8522 - }, - { - "properties": { - "facing": "east" - }, - "id": 8523 - }, - { - "properties": { - "facing": "south" - }, - "id": 8524 - }, - { - "properties": { - "facing": "west" - }, - "id": 8525 - }, - { - "properties": { - "facing": "up" - }, - "id": 8526, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8527 - } - ] - }, - "minecraft:chorus_plant": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8528 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8529 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8530 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8531 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8532 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8533 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8534 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8535 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8536 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8537 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8538 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8539 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8540 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8541 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8542 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8543 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8544 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8545 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8546 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8547 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8548 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8549 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8550 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8551 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8552 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8553 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8554 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8555 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8556 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8557 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8558 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8559 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8560 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8561 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8562 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8563 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8564 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8565 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8566 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8567 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8568 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8569 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8570 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8571 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8572 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8573 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8574 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8575 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8576 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8577 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8578 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8579 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8580 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8581 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8582 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8583 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 8584 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 8585 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 8586 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 8587 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 8588 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 8589 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 8590 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 8591, - "default": true - } - ] - }, - "minecraft:chorus_flower": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 8592, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 8593 - }, - { - "properties": { - "age": "2" - }, - "id": 8594 - }, - { - "properties": { - "age": "3" - }, - "id": 8595 - }, - { - "properties": { - "age": "4" - }, - "id": 8596 - }, - { - "properties": { - "age": "5" - }, - "id": 8597 - } - ] - }, - "minecraft:purpur_block": { - "states": [ - { - "id": 8598, - "default": true - } - ] - }, - "minecraft:purpur_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 8599 - }, - { - "properties": { - "axis": "y" - }, - "id": 8600, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 8601 - } - ] - }, - "minecraft:purpur_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8602 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8603 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8604 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8605 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8606 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8607 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8608 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8609 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8610 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8611 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8612 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8613, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8614 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8615 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8616 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8617 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8618 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8619 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8620 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8621 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8622 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8623 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8624 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8625 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8626 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8627 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8628 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8629 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8630 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8631 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8632 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8633 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8634 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8635 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8636 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8637 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8638 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8639 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8640 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8641 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8642 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8643 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8644 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8645 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8646 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8647 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8648 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8649 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8650 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8651 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8652 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8653 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8654 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8655 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8656 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8657 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8658 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8659 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8660 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8661 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8662 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8663 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8664 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8665 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8666 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8667 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8668 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8669 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8670 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8671 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8672 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8673 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8674 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8675 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8676 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8677 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8678 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8679 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8680 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8681 - } - ] - }, - "minecraft:end_stone_bricks": { - "states": [ - { - "id": 8682, - "default": true - } - ] - }, - "minecraft:beetroots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 8683, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 8684 - }, - { - "properties": { - "age": "2" - }, - "id": 8685 - }, - { - "properties": { - "age": "3" - }, - "id": 8686 - } - ] - }, - "minecraft:grass_path": { - "states": [ - { - "id": 8687, - "default": true - } - ] - }, - "minecraft:end_gateway": { - "states": [ - { - "id": 8688, - "default": true - } - ] - }, - "minecraft:repeating_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 8689 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 8690 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 8691 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 8692 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 8693 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 8694 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 8695, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 8696 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 8697 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 8698 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 8699 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 8700 - } - ] - }, - "minecraft:chain_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 8701 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 8702 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 8703 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 8704 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 8705 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 8706 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 8707, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 8708 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 8709 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 8710 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 8711 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 8712 - } - ] - }, - "minecraft:frosted_ice": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 8713, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 8714 - }, - { - "properties": { - "age": "2" - }, - "id": 8715 - }, - { - "properties": { - "age": "3" - }, - "id": 8716 - } - ] - }, - "minecraft:magma_block": { - "states": [ - { - "id": 8717, - "default": true - } - ] - }, - "minecraft:nether_wart_block": { - "states": [ - { - "id": 8718, - "default": true - } - ] - }, - "minecraft:red_nether_bricks": { - "states": [ - { - "id": 8719, - "default": true - } - ] - }, - "minecraft:bone_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 8720 - }, - { - "properties": { - "axis": "y" - }, - "id": 8721, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 8722 - } - ] - }, - "minecraft:structure_void": { - "states": [ - { - "id": 8723, - "default": true - } - ] - }, - "minecraft:observer": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "powered": "true" - }, - "id": 8724 - }, - { - "properties": { - "facing": "north", - "powered": "false" - }, - "id": 8725 - }, - { - "properties": { - "facing": "east", - "powered": "true" - }, - "id": 8726 - }, - { - "properties": { - "facing": "east", - "powered": "false" - }, - "id": 8727 - }, - { - "properties": { - "facing": "south", - "powered": "true" - }, - "id": 8728 - }, - { - "properties": { - "facing": "south", - "powered": "false" - }, - "id": 8729, - "default": true - }, - { - "properties": { - "facing": "west", - "powered": "true" - }, - "id": 8730 - }, - { - "properties": { - "facing": "west", - "powered": "false" - }, - "id": 8731 - }, - { - "properties": { - "facing": "up", - "powered": "true" - }, - "id": 8732 - }, - { - "properties": { - "facing": "up", - "powered": "false" - }, - "id": 8733 - }, - { - "properties": { - "facing": "down", - "powered": "true" - }, - "id": 8734 - }, - { - "properties": { - "facing": "down", - "powered": "false" - }, - "id": 8735 - } - ] - }, - "minecraft:shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8736 - }, - { - "properties": { - "facing": "east" - }, - "id": 8737 - }, - { - "properties": { - "facing": "south" - }, - "id": 8738 - }, - { - "properties": { - "facing": "west" - }, - "id": 8739 - }, - { - "properties": { - "facing": "up" - }, - "id": 8740, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8741 - } - ] - }, - "minecraft:white_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8742 - }, - { - "properties": { - "facing": "east" - }, - "id": 8743 - }, - { - "properties": { - "facing": "south" - }, - "id": 8744 - }, - { - "properties": { - "facing": "west" - }, - "id": 8745 - }, - { - "properties": { - "facing": "up" - }, - "id": 8746, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8747 - } - ] - }, - "minecraft:orange_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8748 - }, - { - "properties": { - "facing": "east" - }, - "id": 8749 - }, - { - "properties": { - "facing": "south" - }, - "id": 8750 - }, - { - "properties": { - "facing": "west" - }, - "id": 8751 - }, - { - "properties": { - "facing": "up" - }, - "id": 8752, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8753 - } - ] - }, - "minecraft:magenta_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8754 - }, - { - "properties": { - "facing": "east" - }, - "id": 8755 - }, - { - "properties": { - "facing": "south" - }, - "id": 8756 - }, - { - "properties": { - "facing": "west" - }, - "id": 8757 - }, - { - "properties": { - "facing": "up" - }, - "id": 8758, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8759 - } - ] - }, - "minecraft:light_blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8760 - }, - { - "properties": { - "facing": "east" - }, - "id": 8761 - }, - { - "properties": { - "facing": "south" - }, - "id": 8762 - }, - { - "properties": { - "facing": "west" - }, - "id": 8763 - }, - { - "properties": { - "facing": "up" - }, - "id": 8764, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8765 - } - ] - }, - "minecraft:yellow_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8766 - }, - { - "properties": { - "facing": "east" - }, - "id": 8767 - }, - { - "properties": { - "facing": "south" - }, - "id": 8768 - }, - { - "properties": { - "facing": "west" - }, - "id": 8769 - }, - { - "properties": { - "facing": "up" - }, - "id": 8770, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8771 - } - ] - }, - "minecraft:lime_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8772 - }, - { - "properties": { - "facing": "east" - }, - "id": 8773 - }, - { - "properties": { - "facing": "south" - }, - "id": 8774 - }, - { - "properties": { - "facing": "west" - }, - "id": 8775 - }, - { - "properties": { - "facing": "up" - }, - "id": 8776, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8777 - } - ] - }, - "minecraft:pink_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8778 - }, - { - "properties": { - "facing": "east" - }, - "id": 8779 - }, - { - "properties": { - "facing": "south" - }, - "id": 8780 - }, - { - "properties": { - "facing": "west" - }, - "id": 8781 - }, - { - "properties": { - "facing": "up" - }, - "id": 8782, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8783 - } - ] - }, - "minecraft:gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8784 - }, - { - "properties": { - "facing": "east" - }, - "id": 8785 - }, - { - "properties": { - "facing": "south" - }, - "id": 8786 - }, - { - "properties": { - "facing": "west" - }, - "id": 8787 - }, - { - "properties": { - "facing": "up" - }, - "id": 8788, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8789 - } - ] - }, - "minecraft:light_gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8790 - }, - { - "properties": { - "facing": "east" - }, - "id": 8791 - }, - { - "properties": { - "facing": "south" - }, - "id": 8792 - }, - { - "properties": { - "facing": "west" - }, - "id": 8793 - }, - { - "properties": { - "facing": "up" - }, - "id": 8794, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8795 - } - ] - }, - "minecraft:cyan_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8796 - }, - { - "properties": { - "facing": "east" - }, - "id": 8797 - }, - { - "properties": { - "facing": "south" - }, - "id": 8798 - }, - { - "properties": { - "facing": "west" - }, - "id": 8799 - }, - { - "properties": { - "facing": "up" - }, - "id": 8800, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8801 - } - ] - }, - "minecraft:purple_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8802 - }, - { - "properties": { - "facing": "east" - }, - "id": 8803 - }, - { - "properties": { - "facing": "south" - }, - "id": 8804 - }, - { - "properties": { - "facing": "west" - }, - "id": 8805 - }, - { - "properties": { - "facing": "up" - }, - "id": 8806, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8807 - } - ] - }, - "minecraft:blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8808 - }, - { - "properties": { - "facing": "east" - }, - "id": 8809 - }, - { - "properties": { - "facing": "south" - }, - "id": 8810 - }, - { - "properties": { - "facing": "west" - }, - "id": 8811 - }, - { - "properties": { - "facing": "up" - }, - "id": 8812, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8813 - } - ] - }, - "minecraft:brown_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8814 - }, - { - "properties": { - "facing": "east" - }, - "id": 8815 - }, - { - "properties": { - "facing": "south" - }, - "id": 8816 - }, - { - "properties": { - "facing": "west" - }, - "id": 8817 - }, - { - "properties": { - "facing": "up" - }, - "id": 8818, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8819 - } - ] - }, - "minecraft:green_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8820 - }, - { - "properties": { - "facing": "east" - }, - "id": 8821 - }, - { - "properties": { - "facing": "south" - }, - "id": 8822 - }, - { - "properties": { - "facing": "west" - }, - "id": 8823 - }, - { - "properties": { - "facing": "up" - }, - "id": 8824, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8825 - } - ] - }, - "minecraft:red_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8826 - }, - { - "properties": { - "facing": "east" - }, - "id": 8827 - }, - { - "properties": { - "facing": "south" - }, - "id": 8828 - }, - { - "properties": { - "facing": "west" - }, - "id": 8829 - }, - { - "properties": { - "facing": "up" - }, - "id": 8830, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8831 - } - ] - }, - "minecraft:black_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8832 - }, - { - "properties": { - "facing": "east" - }, - "id": 8833 - }, - { - "properties": { - "facing": "south" - }, - "id": 8834 - }, - { - "properties": { - "facing": "west" - }, - "id": 8835 - }, - { - "properties": { - "facing": "up" - }, - "id": 8836, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 8837 - } - ] - }, - "minecraft:white_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8838, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8839 - }, - { - "properties": { - "facing": "west" - }, - "id": 8840 - }, - { - "properties": { - "facing": "east" - }, - "id": 8841 - } - ] - }, - "minecraft:orange_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8842, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8843 - }, - { - "properties": { - "facing": "west" - }, - "id": 8844 - }, - { - "properties": { - "facing": "east" - }, - "id": 8845 - } - ] - }, - "minecraft:magenta_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8846, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8847 - }, - { - "properties": { - "facing": "west" - }, - "id": 8848 - }, - { - "properties": { - "facing": "east" - }, - "id": 8849 - } - ] - }, - "minecraft:light_blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8850, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8851 - }, - { - "properties": { - "facing": "west" - }, - "id": 8852 - }, - { - "properties": { - "facing": "east" - }, - "id": 8853 - } - ] - }, - "minecraft:yellow_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8854, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8855 - }, - { - "properties": { - "facing": "west" - }, - "id": 8856 - }, - { - "properties": { - "facing": "east" - }, - "id": 8857 - } - ] - }, - "minecraft:lime_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8858, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8859 - }, - { - "properties": { - "facing": "west" - }, - "id": 8860 - }, - { - "properties": { - "facing": "east" - }, - "id": 8861 - } - ] - }, - "minecraft:pink_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8862, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8863 - }, - { - "properties": { - "facing": "west" - }, - "id": 8864 - }, - { - "properties": { - "facing": "east" - }, - "id": 8865 - } - ] - }, - "minecraft:gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8866, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8867 - }, - { - "properties": { - "facing": "west" - }, - "id": 8868 - }, - { - "properties": { - "facing": "east" - }, - "id": 8869 - } - ] - }, - "minecraft:light_gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8870, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8871 - }, - { - "properties": { - "facing": "west" - }, - "id": 8872 - }, - { - "properties": { - "facing": "east" - }, - "id": 8873 - } - ] - }, - "minecraft:cyan_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8874, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8875 - }, - { - "properties": { - "facing": "west" - }, - "id": 8876 - }, - { - "properties": { - "facing": "east" - }, - "id": 8877 - } - ] - }, - "minecraft:purple_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8878, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8879 - }, - { - "properties": { - "facing": "west" - }, - "id": 8880 - }, - { - "properties": { - "facing": "east" - }, - "id": 8881 - } - ] - }, - "minecraft:blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8882, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8883 - }, - { - "properties": { - "facing": "west" - }, - "id": 8884 - }, - { - "properties": { - "facing": "east" - }, - "id": 8885 - } - ] - }, - "minecraft:brown_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8886, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8887 - }, - { - "properties": { - "facing": "west" - }, - "id": 8888 - }, - { - "properties": { - "facing": "east" - }, - "id": 8889 - } - ] - }, - "minecraft:green_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8890, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8891 - }, - { - "properties": { - "facing": "west" - }, - "id": 8892 - }, - { - "properties": { - "facing": "east" - }, - "id": 8893 - } - ] - }, - "minecraft:red_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8894, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8895 - }, - { - "properties": { - "facing": "west" - }, - "id": 8896 - }, - { - "properties": { - "facing": "east" - }, - "id": 8897 - } - ] - }, - "minecraft:black_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8898, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8899 - }, - { - "properties": { - "facing": "west" - }, - "id": 8900 - }, - { - "properties": { - "facing": "east" - }, - "id": 8901 - } - ] - }, - "minecraft:white_concrete": { - "states": [ - { - "id": 8902, - "default": true - } - ] - }, - "minecraft:orange_concrete": { - "states": [ - { - "id": 8903, - "default": true - } - ] - }, - "minecraft:magenta_concrete": { - "states": [ - { - "id": 8904, - "default": true - } - ] - }, - "minecraft:light_blue_concrete": { - "states": [ - { - "id": 8905, - "default": true - } - ] - }, - "minecraft:yellow_concrete": { - "states": [ - { - "id": 8906, - "default": true - } - ] - }, - "minecraft:lime_concrete": { - "states": [ - { - "id": 8907, - "default": true - } - ] - }, - "minecraft:pink_concrete": { - "states": [ - { - "id": 8908, - "default": true - } - ] - }, - "minecraft:gray_concrete": { - "states": [ - { - "id": 8909, - "default": true - } - ] - }, - "minecraft:light_gray_concrete": { - "states": [ - { - "id": 8910, - "default": true - } - ] - }, - "minecraft:cyan_concrete": { - "states": [ - { - "id": 8911, - "default": true - } - ] - }, - "minecraft:purple_concrete": { - "states": [ - { - "id": 8912, - "default": true - } - ] - }, - "minecraft:blue_concrete": { - "states": [ - { - "id": 8913, - "default": true - } - ] - }, - "minecraft:brown_concrete": { - "states": [ - { - "id": 8914, - "default": true - } - ] - }, - "minecraft:green_concrete": { - "states": [ - { - "id": 8915, - "default": true - } - ] - }, - "minecraft:red_concrete": { - "states": [ - { - "id": 8916, - "default": true - } - ] - }, - "minecraft:black_concrete": { - "states": [ - { - "id": 8917, - "default": true - } - ] - }, - "minecraft:white_concrete_powder": { - "states": [ - { - "id": 8918, - "default": true - } - ] - }, - "minecraft:orange_concrete_powder": { - "states": [ - { - "id": 8919, - "default": true - } - ] - }, - "minecraft:magenta_concrete_powder": { - "states": [ - { - "id": 8920, - "default": true - } - ] - }, - "minecraft:light_blue_concrete_powder": { - "states": [ - { - "id": 8921, - "default": true - } - ] - }, - "minecraft:yellow_concrete_powder": { - "states": [ - { - "id": 8922, - "default": true - } - ] - }, - "minecraft:lime_concrete_powder": { - "states": [ - { - "id": 8923, - "default": true - } - ] - }, - "minecraft:pink_concrete_powder": { - "states": [ - { - "id": 8924, - "default": true - } - ] - }, - "minecraft:gray_concrete_powder": { - "states": [ - { - "id": 8925, - "default": true - } - ] - }, - "minecraft:light_gray_concrete_powder": { - "states": [ - { - "id": 8926, - "default": true - } - ] - }, - "minecraft:cyan_concrete_powder": { - "states": [ - { - "id": 8927, - "default": true - } - ] - }, - "minecraft:purple_concrete_powder": { - "states": [ - { - "id": 8928, - "default": true - } - ] - }, - "minecraft:blue_concrete_powder": { - "states": [ - { - "id": 8929, - "default": true - } - ] - }, - "minecraft:brown_concrete_powder": { - "states": [ - { - "id": 8930, - "default": true - } - ] - }, - "minecraft:green_concrete_powder": { - "states": [ - { - "id": 8931, - "default": true - } - ] - }, - "minecraft:red_concrete_powder": { - "states": [ - { - "id": 8932, - "default": true - } - ] - }, - "minecraft:black_concrete_powder": { - "states": [ - { - "id": 8933, - "default": true - } - ] - }, - "minecraft:kelp": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 8934, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 8935 - }, - { - "properties": { - "age": "2" - }, - "id": 8936 - }, - { - "properties": { - "age": "3" - }, - "id": 8937 - }, - { - "properties": { - "age": "4" - }, - "id": 8938 - }, - { - "properties": { - "age": "5" - }, - "id": 8939 - }, - { - "properties": { - "age": "6" - }, - "id": 8940 - }, - { - "properties": { - "age": "7" - }, - "id": 8941 - }, - { - "properties": { - "age": "8" - }, - "id": 8942 - }, - { - "properties": { - "age": "9" - }, - "id": 8943 - }, - { - "properties": { - "age": "10" - }, - "id": 8944 - }, - { - "properties": { - "age": "11" - }, - "id": 8945 - }, - { - "properties": { - "age": "12" - }, - "id": 8946 - }, - { - "properties": { - "age": "13" - }, - "id": 8947 - }, - { - "properties": { - "age": "14" - }, - "id": 8948 - }, - { - "properties": { - "age": "15" - }, - "id": 8949 - }, - { - "properties": { - "age": "16" - }, - "id": 8950 - }, - { - "properties": { - "age": "17" - }, - "id": 8951 - }, - { - "properties": { - "age": "18" - }, - "id": 8952 - }, - { - "properties": { - "age": "19" - }, - "id": 8953 - }, - { - "properties": { - "age": "20" - }, - "id": 8954 - }, - { - "properties": { - "age": "21" - }, - "id": 8955 - }, - { - "properties": { - "age": "22" - }, - "id": 8956 - }, - { - "properties": { - "age": "23" - }, - "id": 8957 - }, - { - "properties": { - "age": "24" - }, - "id": 8958 - }, - { - "properties": { - "age": "25" - }, - "id": 8959 - } - ] - }, - "minecraft:kelp_plant": { - "states": [ - { - "id": 8960, - "default": true - } - ] - }, - "minecraft:dried_kelp_block": { - "states": [ - { - "id": 8961, - "default": true - } - ] - }, - "minecraft:turtle_egg": { - "properties": { - "eggs": [ - "1", - "2", - "3", - "4" - ], - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ - { - "properties": { - "eggs": "1", - "hatch": "0" - }, - "id": 8962, - "default": true - }, - { - "properties": { - "eggs": "1", - "hatch": "1" - }, - "id": 8963 - }, - { - "properties": { - "eggs": "1", - "hatch": "2" - }, - "id": 8964 - }, - { - "properties": { - "eggs": "2", - "hatch": "0" - }, - "id": 8965 - }, - { - "properties": { - "eggs": "2", - "hatch": "1" - }, - "id": 8966 - }, - { - "properties": { - "eggs": "2", - "hatch": "2" - }, - "id": 8967 - }, - { - "properties": { - "eggs": "3", - "hatch": "0" - }, - "id": 8968 - }, - { - "properties": { - "eggs": "3", - "hatch": "1" - }, - "id": 8969 - }, - { - "properties": { - "eggs": "3", - "hatch": "2" - }, - "id": 8970 - }, - { - "properties": { - "eggs": "4", - "hatch": "0" - }, - "id": 8971 - }, - { - "properties": { - "eggs": "4", - "hatch": "1" - }, - "id": 8972 - }, - { - "properties": { - "eggs": "4", - "hatch": "2" - }, - "id": 8973 - } - ] - }, - "minecraft:dead_tube_coral_block": { - "states": [ - { - "id": 8974, - "default": true - } - ] - }, - "minecraft:dead_brain_coral_block": { - "states": [ - { - "id": 8975, - "default": true - } - ] - }, - "minecraft:dead_bubble_coral_block": { - "states": [ - { - "id": 8976, - "default": true - } - ] - }, - "minecraft:dead_fire_coral_block": { - "states": [ - { - "id": 8977, - "default": true - } - ] - }, - "minecraft:dead_horn_coral_block": { - "states": [ - { - "id": 8978, - "default": true - } - ] - }, - "minecraft:tube_coral_block": { - "states": [ - { - "id": 8979, - "default": true - } - ] - }, - "minecraft:brain_coral_block": { - "states": [ - { - "id": 8980, - "default": true - } - ] - }, - "minecraft:bubble_coral_block": { - "states": [ - { - "id": 8981, - "default": true - } - ] - }, - "minecraft:fire_coral_block": { - "states": [ - { - "id": 8982, - "default": true - } - ] - }, - "minecraft:horn_coral_block": { - "states": [ - { - "id": 8983, - "default": true - } - ] - }, - "minecraft:dead_tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8984, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8985 - } - ] - }, - "minecraft:dead_brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8986, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8987 - } - ] - }, - "minecraft:dead_bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8988, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8989 - } - ] - }, - "minecraft:dead_fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8990, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8991 - } - ] - }, - "minecraft:dead_horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8992, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8993 - } - ] - }, - "minecraft:tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8994, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8995 - } - ] - }, - "minecraft:brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8996, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8997 - } - ] - }, - "minecraft:bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 8998, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 8999 - } - ] - }, - "minecraft:fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9000, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9001 - } - ] - }, - "minecraft:horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9002, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9003 - } - ] - }, - "minecraft:dead_tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9004, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9005 - } - ] - }, - "minecraft:dead_brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9006, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9007 - } - ] - }, - "minecraft:dead_bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9008, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9009 - } - ] - }, - "minecraft:dead_fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9010, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9011 - } - ] - }, - "minecraft:dead_horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9012, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9013 - } - ] - }, - "minecraft:tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9014, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9015 - } - ] - }, - "minecraft:brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9016, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9017 - } - ] - }, - "minecraft:bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9018, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9019 - } - ] - }, - "minecraft:fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9020, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9021 - } - ] - }, - "minecraft:horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9022, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9023 - } - ] - }, - "minecraft:dead_tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9024, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9025 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9026 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9027 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9028 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9029 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9030 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9031 - } - ] - }, - "minecraft:dead_brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9032, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9033 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9034 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9035 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9036 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9037 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9038 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9039 - } - ] - }, - "minecraft:dead_bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9040, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9041 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9042 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9043 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9044 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9045 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9046 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9047 - } - ] - }, - "minecraft:dead_fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9048, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9049 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9050 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9051 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9052 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9053 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9054 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9055 - } - ] - }, - "minecraft:dead_horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9056, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9057 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9058 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9059 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9060 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9061 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9062 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9063 - } - ] - }, - "minecraft:tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9064, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9065 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9066 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9067 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9068 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9069 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9070 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9071 - } - ] - }, - "minecraft:brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9072, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9073 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9074 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9075 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9076 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9077 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9078 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9079 - } - ] - }, - "minecraft:bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9080, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9081 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9082 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9083 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9084 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9085 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9086 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9087 - } - ] - }, - "minecraft:fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9088, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9089 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9090 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9091 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9092 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9093 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9094 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9095 - } - ] - }, - "minecraft:horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9096, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9097 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9098 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9099 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9100 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9101 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9102 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9103 - } - ] - }, - "minecraft:sea_pickle": { - "properties": { - "pickles": [ - "1", - "2", - "3", - "4" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "pickles": "1", - "waterlogged": "true" - }, - "id": 9104, - "default": true - }, - { - "properties": { - "pickles": "1", - "waterlogged": "false" - }, - "id": 9105 - }, - { - "properties": { - "pickles": "2", - "waterlogged": "true" - }, - "id": 9106 - }, - { - "properties": { - "pickles": "2", - "waterlogged": "false" - }, - "id": 9107 - }, - { - "properties": { - "pickles": "3", - "waterlogged": "true" - }, - "id": 9108 - }, - { - "properties": { - "pickles": "3", - "waterlogged": "false" - }, - "id": 9109 - }, - { - "properties": { - "pickles": "4", - "waterlogged": "true" - }, - "id": 9110 - }, - { - "properties": { - "pickles": "4", - "waterlogged": "false" - }, - "id": 9111 - } - ] - }, - "minecraft:blue_ice": { - "states": [ - { - "id": 9112, - "default": true - } - ] - }, - "minecraft:conduit": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9113, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9114 - } - ] - }, - "minecraft:bamboo_sapling": { - "states": [ - { - "id": 9115, - "default": true - } - ] - }, - "minecraft:bamboo": { - "properties": { - "age": [ - "0", - "1" - ], - "leaves": [ - "none", - "small", - "large" - ], - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "leaves": "none", - "stage": "0" - }, - "id": 9116, - "default": true - }, - { - "properties": { - "age": "0", - "leaves": "none", - "stage": "1" - }, - "id": 9117 - }, - { - "properties": { - "age": "0", - "leaves": "small", - "stage": "0" - }, - "id": 9118 - }, - { - "properties": { - "age": "0", - "leaves": "small", - "stage": "1" - }, - "id": 9119 - }, - { - "properties": { - "age": "0", - "leaves": "large", - "stage": "0" - }, - "id": 9120 - }, - { - "properties": { - "age": "0", - "leaves": "large", - "stage": "1" - }, - "id": 9121 - }, - { - "properties": { - "age": "1", - "leaves": "none", - "stage": "0" - }, - "id": 9122 - }, - { - "properties": { - "age": "1", - "leaves": "none", - "stage": "1" - }, - "id": 9123 - }, - { - "properties": { - "age": "1", - "leaves": "small", - "stage": "0" - }, - "id": 9124 - }, - { - "properties": { - "age": "1", - "leaves": "small", - "stage": "1" - }, - "id": 9125 - }, - { - "properties": { - "age": "1", - "leaves": "large", - "stage": "0" - }, - "id": 9126 - }, - { - "properties": { - "age": "1", - "leaves": "large", - "stage": "1" - }, - "id": 9127 - } - ] - }, - "minecraft:potted_bamboo": { - "states": [ - { - "id": 9128, - "default": true - } - ] - }, - "minecraft:void_air": { - "states": [ - { - "id": 9129, - "default": true - } - ] - }, - "minecraft:cave_air": { - "states": [ - { - "id": 9130, - "default": true - } - ] - }, - "minecraft:bubble_column": { - "properties": { - "drag": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "drag": "true" - }, - "id": 9131, - "default": true - }, - { - "properties": { - "drag": "false" - }, - "id": 9132 - } - ] - }, - "minecraft:polished_granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9133 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9134 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9135 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9136 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9137 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9138 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9139 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9140 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9141 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9142 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9143 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9144, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9145 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9146 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9147 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9148 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9149 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9150 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9151 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9152 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9153 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9154 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9155 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9156 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9157 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9158 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9159 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9160 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9161 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9162 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9163 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9164 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9165 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9166 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9167 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9168 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9169 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9170 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9171 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9172 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9173 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9174 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9175 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9176 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9177 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9178 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9179 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9180 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9181 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9182 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9183 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9184 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9185 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9186 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9187 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9188 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9189 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9190 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9191 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9192 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9193 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9194 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9195 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9196 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9197 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9198 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9199 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9200 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9201 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9202 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9203 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9204 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9205 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9206 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9207 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9208 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9209 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9210 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9211 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9212 - } - ] - }, - "minecraft:smooth_red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9213 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9214 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9215 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9216 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9217 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9218 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9219 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9220 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9221 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9222 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9223 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9224, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9225 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9226 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9227 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9228 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9229 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9230 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9231 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9232 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9233 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9234 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9235 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9236 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9237 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9238 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9239 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9240 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9241 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9242 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9243 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9244 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9245 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9246 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9247 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9248 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9249 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9250 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9251 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9252 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9253 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9254 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9255 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9256 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9257 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9258 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9259 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9260 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9261 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9262 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9263 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9264 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9265 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9266 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9267 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9268 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9269 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9270 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9271 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9272 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9273 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9274 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9275 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9276 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9277 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9278 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9279 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9280 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9281 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9282 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9283 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9284 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9285 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9286 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9287 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9288 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9289 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9290 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9291 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9292 - } - ] - }, - "minecraft:mossy_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9293 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9294 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9295 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9296 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9297 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9298 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9299 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9300 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9301 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9302 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9303 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9304, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9305 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9306 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9307 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9308 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9309 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9310 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9311 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9312 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9313 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9314 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9315 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9316 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9317 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9318 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9319 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9320 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9321 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9322 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9323 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9324 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9325 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9326 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9327 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9328 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9329 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9330 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9331 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9332 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9333 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9334 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9335 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9336 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9337 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9338 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9339 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9340 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9341 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9342 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9343 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9344 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9345 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9346 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9347 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9348 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9349 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9350 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9351 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9352 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9353 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9354 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9355 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9356 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9357 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9358 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9359 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9360 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9361 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9362 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9363 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9364 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9365 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9366 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9367 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9368 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9369 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9370 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9371 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9372 - } - ] - }, - "minecraft:polished_diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9373 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9374 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9375 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9376 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9377 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9378 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9379 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9380 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9381 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9382 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9383 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9384, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9385 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9386 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9387 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9388 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9389 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9390 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9391 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9392 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9393 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9394 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9395 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9396 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9397 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9398 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9399 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9400 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9401 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9402 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9403 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9404 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9405 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9406 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9407 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9408 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9409 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9410 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9411 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9412 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9413 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9414 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9415 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9416 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9417 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9418 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9419 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9420 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9421 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9422 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9423 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9424 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9425 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9426 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9427 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9428 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9429 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9430 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9431 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9432 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9433 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9434 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9435 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9436 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9437 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9438 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9439 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9440 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9441 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9442 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9443 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9444 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9445 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9446 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9447 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9448 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9449 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9450 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9451 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9452 - } - ] - }, - "minecraft:mossy_cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9453 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9454 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9455 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9456 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9457 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9458 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9459 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9460 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9461 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9462 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9463 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9464, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9465 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9466 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9467 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9468 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9469 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9470 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9471 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9472 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9473 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9474 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9475 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9476 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9477 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9478 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9479 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9480 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9481 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9482 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9483 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9484 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9485 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9486 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9487 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9488 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9489 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9490 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9491 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9492 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9493 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9494 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9495 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9496 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9497 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9498 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9499 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9500 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9501 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9502 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9503 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9504 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9505 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9506 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9507 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9508 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9509 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9510 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9511 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9512 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9513 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9514 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9515 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9516 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9517 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9518 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9519 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9520 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9521 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9522 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9523 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9524 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9525 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9526 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9527 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9528 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9529 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9530 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9531 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9532 - } - ] - }, - "minecraft:end_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9533 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9534 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9535 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9536 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9537 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9538 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9539 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9540 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9541 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9542 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9543 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9544, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9545 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9546 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9547 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9548 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9549 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9550 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9551 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9552 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9553 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9554 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9555 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9556 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9557 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9558 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9559 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9560 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9561 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9562 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9563 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9564 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9565 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9566 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9567 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9568 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9569 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9570 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9571 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9572 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9573 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9574 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9575 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9576 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9577 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9578 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9579 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9580 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9581 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9582 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9583 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9584 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9585 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9586 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9587 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9588 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9589 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9590 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9591 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9592 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9593 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9594 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9595 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9596 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9597 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9598 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9599 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9600 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9601 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9602 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9603 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9604 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9605 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9606 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9607 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9608 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9609 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9610 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9611 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9612 - } - ] - }, - "minecraft:stone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9613 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9614 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9615 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9616 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9617 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9618 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9619 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9620 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9621 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9622 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9623 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9624, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9625 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9626 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9627 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9628 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9629 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9630 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9631 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9632 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9633 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9634 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9635 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9636 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9637 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9638 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9639 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9640 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9641 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9642 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9643 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9644 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9645 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9646 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9647 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9648 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9649 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9650 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9651 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9652 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9653 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9654 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9655 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9656 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9657 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9658 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9659 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9660 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9661 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9662 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9663 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9664 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9665 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9666 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9667 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9668 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9669 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9670 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9671 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9672 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9673 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9674 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9675 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9676 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9677 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9678 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9679 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9680 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9681 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9682 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9683 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9684 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9685 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9686 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9687 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9688 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9689 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9690 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9691 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9692 - } - ] - }, - "minecraft:smooth_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9693 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9694 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9695 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9696 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9697 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9698 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9699 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9700 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9701 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9702 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9703 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9704, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9705 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9706 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9707 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9708 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9709 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9710 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9711 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9712 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9713 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9714 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9715 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9716 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9717 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9718 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9719 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9720 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9721 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9722 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9723 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9724 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9725 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9726 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9727 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9728 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9729 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9730 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9731 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9732 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9733 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9734 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9735 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9736 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9737 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9738 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9739 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9740 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9741 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9742 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9743 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9744 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9745 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9746 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9747 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9748 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9749 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9750 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9751 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9752 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9753 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9754 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9755 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9756 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9757 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9758 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9759 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9760 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9761 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9762 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9763 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9764 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9765 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9766 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9767 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9768 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9769 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9770 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9771 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9772 - } - ] - }, - "minecraft:smooth_quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9773 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9774 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9775 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9776 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9777 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9778 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9779 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9780 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9781 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9782 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9783 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9784, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9785 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9786 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9787 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9788 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9789 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9790 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9791 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9792 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9793 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9794 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9795 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9796 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9797 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9798 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9799 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9800 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9801 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9802 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9803 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9804 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9805 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9806 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9807 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9808 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9809 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9810 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9811 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9812 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9813 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9814 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9815 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9816 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9817 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9818 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9819 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9820 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9821 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9822 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9823 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9824 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9825 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9826 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9827 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9828 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9829 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9830 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9831 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9832 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9833 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9834 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9835 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9836 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9837 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9838 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9839 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9840 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9841 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9842 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9843 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9844 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9845 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9846 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9847 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9848 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9849 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9850 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9851 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9852 - } - ] - }, - "minecraft:granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9853 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9854 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9855 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9856 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9857 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9858 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9859 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9860 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9861 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9862 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9863 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9864, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9865 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9866 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9867 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9868 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9869 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9870 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9871 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9872 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9873 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9874 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9875 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9876 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9877 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9878 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9879 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9880 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9881 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9882 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9883 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9884 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9885 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9886 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9887 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9888 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9889 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9890 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9891 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9892 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9893 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9894 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9895 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9896 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9897 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9898 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9899 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9900 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9901 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9902 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9903 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9904 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9905 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9906 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9907 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9908 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9909 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9910 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9911 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9912 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9913 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9914 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9915 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9916 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9917 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9918 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9919 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9920 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9921 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9922 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9923 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9924 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9925 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9926 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9927 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9928 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9929 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9930 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9931 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9932 - } - ] - }, - "minecraft:andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9933 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9934 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9935 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9936 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9937 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9938 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9939 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9940 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9941 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9942 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9943 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9944, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9945 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9946 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9947 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9948 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9949 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9950 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9951 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9952 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9953 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9954 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9955 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9956 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9957 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9958 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9959 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9960 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9961 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9962 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9963 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9964 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9965 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9966 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9967 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9968 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9969 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9970 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9971 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9972 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9973 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9974 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9975 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9976 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9977 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9978 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9979 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9980 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9981 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9982 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9983 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9984 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9985 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9986 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9987 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9988 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9989 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9990 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9991 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9992 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9993 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9994 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9995 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9996 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9997 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9998 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9999 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10000 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10001 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10002 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10003 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10004 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10005 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10006 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10007 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10008 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10009 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10010 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10011 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10012 - } - ] - }, - "minecraft:red_nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10013 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10014 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10015 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10016 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10017 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10018 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10019 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10020 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10021 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10022 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10023 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10024, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10025 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10026 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10027 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10028 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10029 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10030 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10031 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10032 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10033 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10034 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10035 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10036 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10037 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10038 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10039 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10040 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10041 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10042 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10043 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10044 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10045 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10046 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10047 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10048 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10049 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10050 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10051 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10052 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10053 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10054 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10055 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10056 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10057 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10058 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10059 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10060 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10061 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10062 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10063 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10064 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10065 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10066 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10067 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10068 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10069 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10070 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10071 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10072 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10073 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10074 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10075 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10076 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10077 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10078 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10079 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10080 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10081 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10082 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10083 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10084 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10085 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10086 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10087 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10088 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10089 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10090 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10091 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10092 - } - ] - }, - "minecraft:polished_andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10093 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10094 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10095 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10096 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10097 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10098 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10099 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10100 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10101 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10102 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10103 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10104, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10105 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10106 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10107 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10108 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10109 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10110 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10111 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10112 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10113 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10114 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10115 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10116 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10117 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10118 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10119 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10120 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10121 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10122 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10123 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10124 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10125 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10126 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10127 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10128 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10129 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10130 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10131 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10132 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10133 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10134 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10135 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10136 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10137 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10138 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10139 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10140 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10141 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10142 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10143 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10144 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10145 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10146 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10147 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10148 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10149 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10150 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10151 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10152 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10153 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10154 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10155 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10156 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10157 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10158 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10159 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10160 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10161 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10162 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10163 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10164 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10165 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10166 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10167 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10168 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10169 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10170 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10171 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10172 - } - ] - }, - "minecraft:diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10173 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10174 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10175 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10176 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10177 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10178 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10179 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10180 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10181 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10182 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10183 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10184, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10185 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10186 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10187 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10188 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10189 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10190 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10191 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10192 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10193 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10194 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10195 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10196 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10197 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10198 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10199 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10200 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10201 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10202 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10203 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10204 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10205 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10206 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10207 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10208 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10209 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10210 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10211 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10212 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10213 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10214 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10215 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10216 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10217 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10218 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10219 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10220 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10221 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10222 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10223 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10224 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10225 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10226 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10227 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10228 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10229 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10230 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10231 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10232 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10233 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10234 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10235 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10236 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10237 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10238 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10239 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10240 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10241 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10242 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10243 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10244 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10245 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10246 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10247 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10248 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10249 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10250 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10251 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10252 - } - ] - }, - "minecraft:polished_granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10253 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10254 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10255 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10256, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10257 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10258 - } - ] - }, - "minecraft:smooth_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10259 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10260 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10261 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10262, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10263 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10264 - } - ] - }, - "minecraft:mossy_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10265 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10266 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10267 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10268, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10269 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10270 - } - ] - }, - "minecraft:polished_diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10271 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10272 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10273 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10274, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10275 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10276 - } - ] - }, - "minecraft:mossy_cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10277 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10278 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10279 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10280, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10281 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10282 - } - ] - }, - "minecraft:end_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10283 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10284 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10285 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10286, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10287 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10288 - } - ] - }, - "minecraft:smooth_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10289 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10290 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10291 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10292, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10293 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10294 - } - ] - }, - "minecraft:smooth_quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10295 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10296 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10297 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10298, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10299 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10300 - } - ] - }, - "minecraft:granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10301 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10302 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10303 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10304, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10305 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10306 - } - ] - }, - "minecraft:andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10307 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10308 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10309 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10310, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10311 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10312 - } - ] - }, - "minecraft:red_nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10313 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10314 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10315 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10316, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10317 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10318 - } - ] - }, - "minecraft:polished_andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10319 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10320 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10321 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10322, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10323 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10324 - } - ] - }, - "minecraft:diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 10325 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 10326 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 10327 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 10328, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 10329 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 10330 - } - ] - }, - "minecraft:brick_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10331 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10332 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10333 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10334 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10335 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10336 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10337 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10338 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10339 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10340 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10341 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10342 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10343 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10344 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10345 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10346 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10347 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10348 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10349 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10350 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10351 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10352 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10353 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10354 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10355 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10356 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10357 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10358 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10359 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10360 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10361 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10362 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10363 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10364 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10365 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10366 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10367 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10368 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10369 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10370 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10371 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10372 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10373 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10374 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10375 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10376 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10377 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10378 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10379 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10380 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10381 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10382 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10383 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10384 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10385 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10386 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10387 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10388 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10389 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10390, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10391 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10392 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10393 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10394 - } - ] - }, - "minecraft:prismarine_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10395 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10396 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10397 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10398 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10399 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10400 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10401 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10402 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10403 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10404 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10405 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10406 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10407 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10408 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10409 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10410 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10411 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10412 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10413 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10414 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10415 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10416 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10417 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10418 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10419 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10420 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10421 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10422 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10423 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10424 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10425 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10426 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10427 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10428 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10429 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10430 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10431 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10432 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10433 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10434 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10435 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10436 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10437 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10438 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10439 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10440 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10441 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10442 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10443 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10444 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10445 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10446 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10447 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10448 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10449 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10450 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10451 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10452 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10453 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10454, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10455 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10456 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10457 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10458 - } - ] - }, - "minecraft:red_sandstone_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10459 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10460 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10461 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10462 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10463 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10464 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10465 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10466 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10467 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10468 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10469 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10470 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10471 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10472 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10473 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10474 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10475 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10476 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10477 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10478 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10479 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10480 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10481 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10482 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10483 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10484 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10485 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10486 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10487 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10488 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10489 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10490 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10491 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10492 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10493 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10494 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10495 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10496 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10497 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10498 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10499 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10500 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10501 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10502 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10503 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10504 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10505 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10506 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10507 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10508 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10509 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10510 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10511 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10512 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10513 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10514 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10515 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10516 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10517 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10518, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10519 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10520 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10521 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10522 - } - ] - }, - "minecraft:mossy_stone_brick_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10523 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10524 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10525 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10526 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10527 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10528 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10529 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10530 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10531 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10532 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10533 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10534 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10535 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10536 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10537 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10538 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10539 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10540 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10541 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10542 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10543 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10544 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10545 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10546 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10547 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10548 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10549 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10550 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10551 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10552 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10553 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10554 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10555 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10556 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10557 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10558 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10559 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10560 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10561 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10562 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10563 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10564 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10565 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10566 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10567 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10568 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10569 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10570 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10571 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10572 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10573 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10574 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10575 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10576 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10577 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10578 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10579 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10580 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10581 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10582, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10583 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10584 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10585 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10586 - } - ] - }, - "minecraft:granite_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10587 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10588 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10589 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10590 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10591 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10592 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10593 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10594 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10595 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10596 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10597 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10598 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10599 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10600 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10601 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10602 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10603 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10604 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10605 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10606 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10607 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10608 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10609 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10610 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10611 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10612 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10613 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10614 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10615 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10616 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10617 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10618 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10619 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10620 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10621 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10622 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10623 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10624 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10625 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10626 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10627 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10628 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10629 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10630 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10631 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10632 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10633 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10634 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10635 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10636 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10637 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10638 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10639 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10640 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10641 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10642 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10643 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10644 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10645 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10646, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10647 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10648 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10649 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10650 - } - ] - }, - "minecraft:stone_brick_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10651 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10652 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10653 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10654 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10655 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10656 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10657 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10658 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10659 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10660 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10661 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10662 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10663 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10664 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10665 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10666 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10667 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10668 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10669 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10670 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10671 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10672 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10673 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10674 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10675 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10676 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10677 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10678 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10679 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10680 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10681 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10682 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10683 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10684 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10685 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10686 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10687 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10688 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10689 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10690 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10691 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10692 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10693 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10694 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10695 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10696 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10697 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10698 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10699 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10700 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10701 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10702 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10703 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10704 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10705 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10706 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10707 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10708 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10709 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10710, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10711 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10712 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10713 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10714 - } - ] - }, - "minecraft:nether_brick_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10715 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10716 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10717 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10718 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10719 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10720 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10721 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10722 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10723 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10724 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10725 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10726 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10727 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10728 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10729 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10730 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10731 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10732 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10733 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10734 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10735 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10736 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10737 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10738 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10739 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10740 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10741 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10742 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10743 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10744 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10745 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10746 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10747 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10748 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10749 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10750 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10751 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10752 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10753 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10754 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10755 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10756 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10757 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10758 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10759 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10760 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10761 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10762 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10763 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10764 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10765 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10766 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10767 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10768 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10769 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10770 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10771 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10772 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10773 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10774, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10775 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10776 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10777 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10778 - } - ] - }, - "minecraft:andesite_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10779 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10780 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10781 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10782 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10783 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10784 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10785 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10786 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10787 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10788 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10789 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10790 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10791 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10792 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10793 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10794 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10795 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10796 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10797 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10798 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10799 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10800 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10801 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10802 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10803 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10804 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10805 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10806 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10807 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10808 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10809 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10810 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10811 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10812 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10813 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10814 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10815 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10816 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10817 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10818 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10819 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10820 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10821 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10822 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10823 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10824 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10825 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10826 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10827 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10828 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10829 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10830 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10831 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10832 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10833 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10834 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10835 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10836 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10837 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10838, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10839 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10840 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10841 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10842 - } - ] - }, - "minecraft:red_nether_brick_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10843 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10844 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10845 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10846 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10847 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10848 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10849 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10850 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10851 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10852 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10853 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10854 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10855 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10856 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10857 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10858 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10859 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10860 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10861 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10862 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10863 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10864 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10865 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10866 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10867 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10868 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10869 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10870 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10871 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10872 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10873 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10874 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10875 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10876 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10877 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10878 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10879 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10880 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10881 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10882 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10883 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10884 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10885 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10886 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10887 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10888 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10889 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10890 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10891 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10892 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10893 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10894 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10895 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10896 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10897 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10898 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10899 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10900 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10901 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10902, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10903 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10904 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10905 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10906 - } - ] - }, - "minecraft:sandstone_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10907 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10908 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10909 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10910 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10911 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10912 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10913 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10914 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10915 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10916 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10917 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10918 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10919 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10920 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10921 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10922 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10923 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10924 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10925 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10926 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10927 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10928 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10929 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10930 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10931 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10932 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10933 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10934 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10935 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10936 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10937 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10938 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10939 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10940 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10941 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10942 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10943 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10944 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10945 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10946 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10947 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10948 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10949 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10950 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10951 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10952 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10953 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10954 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10955 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10956 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10957 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10958 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10959 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10960 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10961 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10962 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10963 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10964 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10965 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10966, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10967 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10968 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10969 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10970 - } - ] - }, - "minecraft:end_stone_brick_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10971 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10972 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10973 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10974 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10975 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10976 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10977 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10978 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10979 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10980 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10981 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10982 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10983 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10984 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10985 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10986 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10987 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10988 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10989 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10990 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10991 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 10992 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 10993 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 10994 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 10995 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 10996 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 10997 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 10998 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 10999 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11000 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11001 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11002 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11003 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11004 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11005 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11006 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11007 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11008 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11009 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11010 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11011 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11012 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11013 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11014 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11015 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11016 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11017 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11018 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11019 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11020 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11021 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11022 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11023 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11024 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11025 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11026 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11027 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11028 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11029 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11030, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11031 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11032 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11033 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11034 - } - ] - }, - "minecraft:diorite_wall": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11035 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11036 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11037 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11038 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11039 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11040 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11041 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11042 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11043 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11044 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11045 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11046 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11047 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11048 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11049 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11050 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11051 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11052 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11053 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11054 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11055 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11056 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11057 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11058 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11059 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11060 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11061 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11062 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11063 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11064 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11065 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11066 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11067 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11068 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11069 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11070 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11071 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11072 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11073 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11074 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11075 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11076 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11077 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11078 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11079 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11080 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11081 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11082 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11083 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11084 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11085 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11086 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11087 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11088 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11089 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11090 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 11091 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 11092 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 11093 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 11094, - "default": true - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 11095 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 11096 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 11097 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 11098 - } - ] - }, - "minecraft:scaffolding": { - "properties": { - "bottom": [ - "true", - "false" - ], - "distance": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "true" - }, - "id": 11099 - }, - { - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "false" - }, - "id": 11100 - }, - { - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "true" - }, - "id": 11101 - }, - { - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "false" - }, - "id": 11102 - }, - { - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "true" - }, - "id": 11103 - }, - { - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "false" - }, - "id": 11104 - }, - { - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "true" - }, - "id": 11105 - }, - { - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "false" - }, - "id": 11106 - }, - { - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "true" - }, - "id": 11107 - }, - { - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "false" - }, - "id": 11108 - }, - { - "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "true" - }, - "id": 11109 - }, - { - "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "false" - }, - "id": 11110 - }, - { - "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "true" - }, - "id": 11111 - }, - { - "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "false" - }, - "id": 11112 - }, - { - "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "true" - }, - "id": 11113 - }, - { - "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "false" - }, - "id": 11114 - }, - { - "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "true" - }, - "id": 11115 - }, - { - "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "false" - }, - "id": 11116 - }, - { - "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "true" - }, - "id": 11117 - }, - { - "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "false" - }, - "id": 11118 - }, - { - "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "true" - }, - "id": 11119 - }, - { - "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "false" - }, - "id": 11120 - }, - { - "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "true" - }, - "id": 11121 - }, - { - "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "false" - }, - "id": 11122 - }, - { - "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "true" - }, - "id": 11123 - }, - { - "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "false" - }, - "id": 11124 - }, - { - "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "true" - }, - "id": 11125 - }, - { - "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "false" - }, - "id": 11126 - }, - { - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "true" - }, - "id": 11127 - }, - { - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "false" - }, - "id": 11128 - }, - { - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "true" - }, - "id": 11129 - }, - { - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "false" - }, - "id": 11130, - "default": true - } - ] - }, - "minecraft:loom": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 11131, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 11132 - }, - { - "properties": { - "facing": "west" - }, - "id": 11133 - }, - { - "properties": { - "facing": "east" - }, - "id": 11134 - } - ] - }, - "minecraft:barrel": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "open": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "open": "true" - }, - "id": 11135 - }, - { - "properties": { - "facing": "north", - "open": "false" - }, - "id": 11136, - "default": true - }, - { - "properties": { - "facing": "east", - "open": "true" - }, - "id": 11137 - }, - { - "properties": { - "facing": "east", - "open": "false" - }, - "id": 11138 - }, - { - "properties": { - "facing": "south", - "open": "true" - }, - "id": 11139 - }, - { - "properties": { - "facing": "south", - "open": "false" - }, - "id": 11140 - }, - { - "properties": { - "facing": "west", - "open": "true" - }, - "id": 11141 - }, - { - "properties": { - "facing": "west", - "open": "false" - }, - "id": 11142 - }, - { - "properties": { - "facing": "up", - "open": "true" - }, - "id": 11143 - }, - { - "properties": { - "facing": "up", - "open": "false" - }, - "id": 11144 - }, - { - "properties": { - "facing": "down", - "open": "true" - }, - "id": 11145 - }, - { - "properties": { - "facing": "down", - "open": "false" - }, - "id": 11146 - } - ] - }, - "minecraft:smoker": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 11147 - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 11148, - "default": true - }, - { - "properties": { - "facing": "south", - "lit": "true" - }, - "id": 11149 - }, - { - "properties": { - "facing": "south", - "lit": "false" - }, - "id": 11150 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 11151 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 11152 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 11153 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 11154 - } - ] - }, - "minecraft:blast_furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 11155 - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 11156, - "default": true - }, - { - "properties": { - "facing": "south", - "lit": "true" - }, - "id": 11157 - }, - { - "properties": { - "facing": "south", - "lit": "false" - }, - "id": 11158 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 11159 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 11160 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 11161 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 11162 - } - ] - }, - "minecraft:cartography_table": { - "states": [ - { - "id": 11163, - "default": true - } - ] - }, - "minecraft:fletching_table": { - "states": [ - { - "id": 11164, - "default": true - } - ] - }, - "minecraft:grindstone": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north" - }, - "id": 11165 - }, - { - "properties": { - "face": "floor", - "facing": "south" - }, - "id": 11166 - }, - { - "properties": { - "face": "floor", - "facing": "west" - }, - "id": 11167 - }, - { - "properties": { - "face": "floor", - "facing": "east" - }, - "id": 11168 - }, - { - "properties": { - "face": "wall", - "facing": "north" - }, - "id": 11169, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south" - }, - "id": 11170 - }, - { - "properties": { - "face": "wall", - "facing": "west" - }, - "id": 11171 - }, - { - "properties": { - "face": "wall", - "facing": "east" - }, - "id": 11172 - }, - { - "properties": { - "face": "ceiling", - "facing": "north" - }, - "id": 11173 - }, - { - "properties": { - "face": "ceiling", - "facing": "south" - }, - "id": 11174 - }, - { - "properties": { - "face": "ceiling", - "facing": "west" - }, - "id": 11175 - }, - { - "properties": { - "face": "ceiling", - "facing": "east" - }, - "id": 11176 - } - ] - }, - "minecraft:lectern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "has_book": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "has_book": "true", - "powered": "true" - }, - "id": 11177 - }, - { - "properties": { - "facing": "north", - "has_book": "true", - "powered": "false" - }, - "id": 11178 - }, - { - "properties": { - "facing": "north", - "has_book": "false", - "powered": "true" - }, - "id": 11179 - }, - { - "properties": { - "facing": "north", - "has_book": "false", - "powered": "false" - }, - "id": 11180, - "default": true - }, - { - "properties": { - "facing": "south", - "has_book": "true", - "powered": "true" - }, - "id": 11181 - }, - { - "properties": { - "facing": "south", - "has_book": "true", - "powered": "false" - }, - "id": 11182 - }, - { - "properties": { - "facing": "south", - "has_book": "false", - "powered": "true" - }, - "id": 11183 - }, - { - "properties": { - "facing": "south", - "has_book": "false", - "powered": "false" - }, - "id": 11184 - }, - { - "properties": { - "facing": "west", - "has_book": "true", - "powered": "true" - }, - "id": 11185 - }, - { - "properties": { - "facing": "west", - "has_book": "true", - "powered": "false" - }, - "id": 11186 - }, - { - "properties": { - "facing": "west", - "has_book": "false", - "powered": "true" - }, - "id": 11187 - }, - { - "properties": { - "facing": "west", - "has_book": "false", - "powered": "false" - }, - "id": 11188 - }, - { - "properties": { - "facing": "east", - "has_book": "true", - "powered": "true" - }, - "id": 11189 - }, - { - "properties": { - "facing": "east", - "has_book": "true", - "powered": "false" - }, - "id": 11190 - }, - { - "properties": { - "facing": "east", - "has_book": "false", - "powered": "true" - }, - "id": 11191 - }, - { - "properties": { - "facing": "east", - "has_book": "false", - "powered": "false" - }, - "id": 11192 - } - ] - }, - "minecraft:smithing_table": { - "states": [ - { - "id": 11193, - "default": true - } - ] - }, - "minecraft:stonecutter": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 11194, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 11195 - }, - { - "properties": { - "facing": "west" - }, - "id": 11196 - }, - { - "properties": { - "facing": "east" - }, - "id": 11197 - } - ] - }, - "minecraft:bell": { - "properties": { - "attachment": [ - "floor", - "ceiling", - "single_wall", - "double_wall" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "true" - }, - "id": 11198 - }, - { - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "false" - }, - "id": 11199, - "default": true - }, - { - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "true" - }, - "id": 11200 - }, - { - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "false" - }, - "id": 11201 - }, - { - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "true" - }, - "id": 11202 - }, - { - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "false" - }, - "id": 11203 - }, - { - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "true" - }, - "id": 11204 - }, - { - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "false" - }, - "id": 11205 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 11206 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 11207 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 11208 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 11209 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 11210 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 11211 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 11212 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 11213 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "true" - }, - "id": 11214 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "false" - }, - "id": 11215 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "true" - }, - "id": 11216 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "false" - }, - "id": 11217 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "true" - }, - "id": 11218 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "false" - }, - "id": 11219 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "true" - }, - "id": 11220 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "false" - }, - "id": 11221 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "true" - }, - "id": 11222 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "false" - }, - "id": 11223 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "true" - }, - "id": 11224 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "false" - }, - "id": 11225 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "true" - }, - "id": 11226 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "false" - }, - "id": 11227 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "true" - }, - "id": 11228 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "false" - }, - "id": 11229 - } - ] - }, - "minecraft:lantern": { - "properties": { - "hanging": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "hanging": "true" - }, - "id": 11230 - }, - { - "properties": { - "hanging": "false" - }, - "id": 11231, - "default": true - } - ] - }, - "minecraft:campfire": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ], - "signal_fire": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11232 - }, - { - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11233 - }, - { - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11234 - }, - { - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11235, - "default": true - }, - { - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11236 - }, - { - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11237 - }, - { - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11238 - }, - { - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11239 - }, - { - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11240 - }, - { - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11241 - }, - { - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11242 - }, - { - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11243 - }, - { - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11244 - }, - { - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11245 - }, - { - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11246 - }, - { - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11247 - }, - { - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11248 - }, - { - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11249 - }, - { - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11250 - }, - { - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11251 - }, - { - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11252 - }, - { - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11253 - }, - { - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11254 - }, - { - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11255 - }, - { - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11256 - }, - { - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11257 - }, - { - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11258 - }, - { - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11259 - }, - { - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 11260 - }, - { - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 11261 - }, - { - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 11262 - }, - { - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 11263 - } - ] - }, - "minecraft:sweet_berry_bush": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 11264, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 11265 - }, - { - "properties": { - "age": "2" - }, - "id": 11266 - }, - { - "properties": { - "age": "3" - }, - "id": 11267 - } - ] - }, - "minecraft:structure_block": { - "properties": { - "mode": [ - "save", - "load", - "corner", - "data" - ] - }, - "states": [ - { - "properties": { - "mode": "save" - }, - "id": 11268, - "default": true - }, - { - "properties": { - "mode": "load" - }, - "id": 11269 - }, - { - "properties": { - "mode": "corner" - }, - "id": 11270 - }, - { - "properties": { - "mode": "data" - }, - "id": 11271 - } - ] - }, - "minecraft:jigsaw": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 11272 - }, - { - "properties": { - "facing": "east" - }, - "id": 11273 - }, - { - "properties": { - "facing": "south" - }, - "id": 11274 - }, - { - "properties": { - "facing": "west" - }, - "id": 11275 - }, - { - "properties": { - "facing": "up" - }, - "id": 11276, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 11277 - } - ] - }, - "minecraft:composter": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "properties": { - "level": "0" - }, - "id": 11278, - "default": true - }, - { - "properties": { - "level": "1" - }, - "id": 11279 - }, - { - "properties": { - "level": "2" - }, - "id": 11280 - }, - { - "properties": { - "level": "3" - }, - "id": 11281 - }, - { - "properties": { - "level": "4" - }, - "id": 11282 - }, - { - "properties": { - "level": "5" - }, - "id": 11283 - }, - { - "properties": { - "level": "6" - }, - "id": 11284 - }, - { - "properties": { - "level": "7" - }, - "id": 11285 - }, - { - "properties": { - "level": "8" - }, - "id": 11286 - } - ] - }, - "minecraft:bee_nest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "honey_level": "0" - }, - "id": 11287, - "default": true - }, - { - "properties": { - "facing": "north", - "honey_level": "1" - }, - "id": 11288 - }, - { - "properties": { - "facing": "north", - "honey_level": "2" - }, - "id": 11289 - }, - { - "properties": { - "facing": "north", - "honey_level": "3" - }, - "id": 11290 - }, - { - "properties": { - "facing": "north", - "honey_level": "4" - }, - "id": 11291 - }, - { - "properties": { - "facing": "north", - "honey_level": "5" - }, - "id": 11292 - }, - { - "properties": { - "facing": "south", - "honey_level": "0" - }, - "id": 11293 - }, - { - "properties": { - "facing": "south", - "honey_level": "1" - }, - "id": 11294 - }, - { - "properties": { - "facing": "south", - "honey_level": "2" - }, - "id": 11295 - }, - { - "properties": { - "facing": "south", - "honey_level": "3" - }, - "id": 11296 - }, - { - "properties": { - "facing": "south", - "honey_level": "4" - }, - "id": 11297 - }, - { - "properties": { - "facing": "south", - "honey_level": "5" - }, - "id": 11298 - }, - { - "properties": { - "facing": "west", - "honey_level": "0" - }, - "id": 11299 - }, - { - "properties": { - "facing": "west", - "honey_level": "1" - }, - "id": 11300 - }, - { - "properties": { - "facing": "west", - "honey_level": "2" - }, - "id": 11301 - }, - { - "properties": { - "facing": "west", - "honey_level": "3" - }, - "id": 11302 - }, - { - "properties": { - "facing": "west", - "honey_level": "4" - }, - "id": 11303 - }, - { - "properties": { - "facing": "west", - "honey_level": "5" - }, - "id": 11304 - }, - { - "properties": { - "facing": "east", - "honey_level": "0" - }, - "id": 11305 - }, - { - "properties": { - "facing": "east", - "honey_level": "1" - }, - "id": 11306 - }, - { - "properties": { - "facing": "east", - "honey_level": "2" - }, - "id": 11307 - }, - { - "properties": { - "facing": "east", - "honey_level": "3" - }, - "id": 11308 - }, - { - "properties": { - "facing": "east", - "honey_level": "4" - }, - "id": 11309 - }, - { - "properties": { - "facing": "east", - "honey_level": "5" - }, - "id": 11310 - } - ] - }, - "minecraft:beehive": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "honey_level": "0" - }, - "id": 11311, - "default": true - }, - { - "properties": { - "facing": "north", - "honey_level": "1" - }, - "id": 11312 - }, - { - "properties": { - "facing": "north", - "honey_level": "2" - }, - "id": 11313 - }, - { - "properties": { - "facing": "north", - "honey_level": "3" - }, - "id": 11314 - }, - { - "properties": { - "facing": "north", - "honey_level": "4" - }, - "id": 11315 - }, - { - "properties": { - "facing": "north", - "honey_level": "5" - }, - "id": 11316 - }, - { - "properties": { - "facing": "south", - "honey_level": "0" - }, - "id": 11317 - }, - { - "properties": { - "facing": "south", - "honey_level": "1" - }, - "id": 11318 - }, - { - "properties": { - "facing": "south", - "honey_level": "2" - }, - "id": 11319 - }, - { - "properties": { - "facing": "south", - "honey_level": "3" - }, - "id": 11320 - }, - { - "properties": { - "facing": "south", - "honey_level": "4" - }, - "id": 11321 - }, - { - "properties": { - "facing": "south", - "honey_level": "5" - }, - "id": 11322 - }, - { - "properties": { - "facing": "west", - "honey_level": "0" - }, - "id": 11323 - }, - { - "properties": { - "facing": "west", - "honey_level": "1" - }, - "id": 11324 - }, - { - "properties": { - "facing": "west", - "honey_level": "2" - }, - "id": 11325 - }, - { - "properties": { - "facing": "west", - "honey_level": "3" - }, - "id": 11326 - }, - { - "properties": { - "facing": "west", - "honey_level": "4" - }, - "id": 11327 - }, - { - "properties": { - "facing": "west", - "honey_level": "5" - }, - "id": 11328 - }, - { - "properties": { - "facing": "east", - "honey_level": "0" - }, - "id": 11329 - }, - { - "properties": { - "facing": "east", - "honey_level": "1" - }, - "id": 11330 - }, - { - "properties": { - "facing": "east", - "honey_level": "2" - }, - "id": 11331 - }, - { - "properties": { - "facing": "east", - "honey_level": "3" - }, - "id": 11332 - }, - { - "properties": { - "facing": "east", - "honey_level": "4" - }, - "id": 11333 - }, - { - "properties": { - "facing": "east", - "honey_level": "5" - }, - "id": 11334 - } - ] - }, - "minecraft:honey_block": { - "states": [ - { - "id": 11335, - "default": true - } - ] - }, - "minecraft:honeycomb_block": { - "states": [ - { - "id": 11336, - "default": true - } - ] - } -}` diff --git a/data/entity/entity.go b/data/entity/entity.go new file mode 100644 index 0000000..e543898 --- /dev/null +++ b/data/entity/entity.go @@ -0,0 +1,257 @@ +// Package entity stores information about entities in Minecraft. +package entity + +// ID describes the numeric ID of an entity. +type ID uint32 + +// Category groups like entities. +type Category uint8 + +// Valid entity categories. +const ( + Unknown Category = iota + Blocks + Immobile + Vehicles + Drops + Projectiles + PassiveMob + HostileMob +) + +// Entity describes information about a type of entity. +type Entity struct { + ID ID + InternalID uint32 + DisplayName string + Name string + + Width float64 + Height float64 + + Type string + Category Category +} + +var ( + AreaEffectCloud = Entity{ID: 0, InternalID: 0, DisplayName: "Area Effect Cloud", Name: "area_effect_cloud", Width: 6, Height: 0.5, Type: "mob", Category: Immobile} + ArmorStand = Entity{ID: 1, InternalID: 1, DisplayName: "Armor Stand", Name: "armor_stand", Width: 0.5, Height: 1.975, Type: "mob", Category: Immobile} + Arrow = Entity{ID: 2, InternalID: 2, DisplayName: "Arrow", Name: "arrow", Width: 0.5, Height: 0.5, Type: "mob", Category: Projectiles} + Bat = Entity{ID: 3, InternalID: 3, DisplayName: "Bat", Name: "bat", Width: 0.5, Height: 0.9, Type: "mob", Category: PassiveMob} + Bee = Entity{ID: 4, InternalID: 4, DisplayName: "Bee", Name: "bee", Width: 0.7, Height: 0.6, Type: "UNKNOWN", Category: Unknown} + Blaze = Entity{ID: 5, InternalID: 5, DisplayName: "Blaze", Name: "blaze", Width: 0.6, Height: 1.8, Type: "mob", Category: HostileMob} + Boat = Entity{ID: 6, InternalID: 6, DisplayName: "Boat", Name: "boat", Width: 1.375, Height: 0.5625, Type: "mob", Category: Vehicles} + Cat = Entity{ID: 7, InternalID: 7, DisplayName: "Cat", Name: "cat", Width: 0.6, Height: 0.7, Type: "mob", Category: PassiveMob} + CaveSpider = Entity{ID: 8, InternalID: 8, DisplayName: "Cave Spider", Name: "cave_spider", Width: 0.7, Height: 0.5, Type: "mob", Category: HostileMob} + Chicken = Entity{ID: 9, InternalID: 9, DisplayName: "Chicken", Name: "chicken", Width: 0.4, Height: 0.7, Type: "mob", Category: PassiveMob} + Cod = Entity{ID: 10, InternalID: 10, DisplayName: "Cod", Name: "cod", Width: 0.5, Height: 0.3, Type: "mob", Category: PassiveMob} + Cow = Entity{ID: 11, InternalID: 11, DisplayName: "Cow", Name: "cow", Width: 0.9, Height: 1.4, Type: "mob", Category: PassiveMob} + Creeper = Entity{ID: 12, InternalID: 12, DisplayName: "Creeper", Name: "creeper", Width: 0.6, Height: 1.7, Type: "mob", Category: HostileMob} + Dolphin = Entity{ID: 13, InternalID: 13, DisplayName: "Dolphin", Name: "dolphin", Width: 0.9, Height: 0.6, Type: "mob", Category: PassiveMob} + Donkey = Entity{ID: 14, InternalID: 14, DisplayName: "Donkey", Name: "donkey", Width: 1.39648, Height: 1.5, Type: "mob", Category: PassiveMob} + DragonFireball = Entity{ID: 15, InternalID: 15, DisplayName: "Dragon Fireball", Name: "dragon_fireball", Width: 1, Height: 1, Type: "mob", Category: Projectiles} + Drowned = Entity{ID: 16, InternalID: 16, DisplayName: "Drowned", Name: "drowned", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + ElderGuardian = Entity{ID: 17, InternalID: 17, DisplayName: "Elder Guardian", Name: "elder_guardian", Width: 1.9975, Height: 1.9975, Type: "mob", Category: HostileMob} + EndCrystal = Entity{ID: 18, InternalID: 18, DisplayName: "End Crystal", Name: "end_crystal", Width: 2, Height: 2, Type: "mob", Category: Unknown} + EnderDragon = Entity{ID: 19, InternalID: 19, DisplayName: "Ender Dragon", Name: "ender_dragon", Width: 16, Height: 8, Type: "mob", Category: HostileMob} + Enderman = Entity{ID: 20, InternalID: 20, DisplayName: "Enderman", Name: "enderman", Width: 0.6, Height: 2.9, Type: "mob", Category: HostileMob} + Endermite = Entity{ID: 21, InternalID: 21, DisplayName: "Endermite", Name: "endermite", Width: 0.4, Height: 0.3, Type: "mob", Category: HostileMob} + Evoker = Entity{ID: 22, InternalID: 22, DisplayName: "Evoker", Name: "evoker", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + EvokerFangs = Entity{ID: 23, InternalID: 23, DisplayName: "Evoker Fangs", Name: "evoker_fangs", Width: 0.5, Height: 0.8, Type: "mob", Category: HostileMob} + ExperienceOrb = Entity{ID: 24, InternalID: 24, DisplayName: "Experience Orb", Name: "experience_orb", Width: 0.5, Height: 0.5, Type: "mob", Category: Unknown} + EyeOfEnder = Entity{ID: 25, InternalID: 25, DisplayName: "Eye of Ender", Name: "eye_of_ender", Width: 0.25, Height: 0.25, Type: "mob", Category: Unknown} + FallingBlock = Entity{ID: 26, InternalID: 26, DisplayName: "Falling Block", Name: "falling_block", Width: 0.98, Height: 0.98, Type: "mob", Category: Blocks} + FireworkRocket = Entity{ID: 27, InternalID: 27, DisplayName: "Firework Rocket", Name: "firework_rocket", Width: 0.25, Height: 0.25, Type: "mob", Category: Unknown} + Fox = Entity{ID: 28, InternalID: 28, DisplayName: "Fox", Name: "fox", Width: 0.6, Height: 0.7, Type: "mob", Category: Unknown} + Ghast = Entity{ID: 29, InternalID: 29, DisplayName: "Ghast", Name: "ghast", Width: 4, Height: 4, Type: "mob", Category: HostileMob} + Giant = Entity{ID: 30, InternalID: 30, DisplayName: "Giant", Name: "giant", Width: 3.6, Height: 12, Type: "mob", Category: HostileMob} + Guardian = Entity{ID: 31, InternalID: 31, DisplayName: "Guardian", Name: "guardian", Width: 0.85, Height: 0.85, Type: "mob", Category: HostileMob} + Hoglin = Entity{ID: 32, InternalID: 32, DisplayName: "Hoglin", Name: "hoglin", Width: 1.39648, Height: 1.4, Type: "UNKNOWN", Category: Unknown} + Horse = Entity{ID: 33, InternalID: 33, DisplayName: "Horse", Name: "horse", Width: 1.39648, Height: 1.6, Type: "mob", Category: PassiveMob} + Husk = Entity{ID: 34, InternalID: 34, DisplayName: "Husk", Name: "husk", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + Illusioner = Entity{ID: 35, InternalID: 35, DisplayName: "Illusioner", Name: "illusioner", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + IronGolem = Entity{ID: 36, InternalID: 36, DisplayName: "Iron Golem", Name: "iron_golem", Width: 1.4, Height: 2.7, Type: "mob", Category: PassiveMob} + Item = Entity{ID: 37, InternalID: 37, DisplayName: "Item", Name: "item", Width: 0.25, Height: 0.25, Type: "mob", Category: Drops} + ItemFrame = Entity{ID: 38, InternalID: 38, DisplayName: "Item Frame", Name: "item_frame", Width: 0.5, Height: 0.5, Type: "mob", Category: Immobile} + Fireball = Entity{ID: 39, InternalID: 39, DisplayName: "Fireball", Name: "fireball", Width: 1, Height: 1, Type: "mob", Category: Projectiles} + LeashKnot = Entity{ID: 40, InternalID: 40, DisplayName: "Leash Knot", Name: "leash_knot", Width: 0.5, Height: 0.5, Type: "mob", Category: Immobile} + LightningBolt = Entity{ID: 41, InternalID: 41, DisplayName: "Lightning Bolt", Name: "lightning_bolt", Width: 0, Height: 0, Type: "mob", Category: Unknown} + Llama = Entity{ID: 42, InternalID: 42, DisplayName: "Llama", Name: "llama", Width: 0.9, Height: 1.87, Type: "mob", Category: PassiveMob} + LlamaSpit = Entity{ID: 43, InternalID: 43, DisplayName: "Llama Spit", Name: "llama_spit", Width: 0.25, Height: 0.25, Type: "mob", Category: Projectiles} + MagmaCube = Entity{ID: 44, InternalID: 44, DisplayName: "Magma Cube", Name: "magma_cube", Width: 2.04, Height: 2.04, Type: "mob", Category: HostileMob} + Minecart = Entity{ID: 45, InternalID: 45, DisplayName: "Minecart", Name: "minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + ChestMinecart = Entity{ID: 46, InternalID: 46, DisplayName: "Minecart with Chest", Name: "chest_minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + CommandBlockMinecart = Entity{ID: 47, InternalID: 47, DisplayName: "Minecart with Command Block", Name: "command_block_minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + FurnaceMinecart = Entity{ID: 48, InternalID: 48, DisplayName: "Minecart with Furnace", Name: "furnace_minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + HopperMinecart = Entity{ID: 49, InternalID: 49, DisplayName: "Minecart with Hopper", Name: "hopper_minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + SpawnerMinecart = Entity{ID: 50, InternalID: 50, DisplayName: "Minecart with Spawner", Name: "spawner_minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + TntMinecart = Entity{ID: 51, InternalID: 51, DisplayName: "Minecart with TNT", Name: "tnt_minecart", Width: 0.98, Height: 0.7, Type: "mob", Category: Vehicles} + Mule = Entity{ID: 52, InternalID: 52, DisplayName: "Mule", Name: "mule", Width: 1.39648, Height: 1.6, Type: "mob", Category: PassiveMob} + Mooshroom = Entity{ID: 53, InternalID: 53, DisplayName: "Mooshroom", Name: "mooshroom", Width: 0.9, Height: 1.4, Type: "mob", Category: PassiveMob} + Ocelot = Entity{ID: 54, InternalID: 54, DisplayName: "Ocelot", Name: "ocelot", Width: 0.6, Height: 0.7, Type: "mob", Category: PassiveMob} + Painting = Entity{ID: 55, InternalID: 55, DisplayName: "Painting", Name: "painting", Width: 0.5, Height: 0.5, Type: "mob", Category: Immobile} + Panda = Entity{ID: 56, InternalID: 56, DisplayName: "Panda", Name: "panda", Width: 1.3, Height: 1.25, Type: "mob", Category: PassiveMob} + Parrot = Entity{ID: 57, InternalID: 57, DisplayName: "Parrot", Name: "parrot", Width: 0.5, Height: 0.9, Type: "mob", Category: PassiveMob} + Phantom = Entity{ID: 58, InternalID: 58, DisplayName: "Phantom", Name: "phantom", Width: 0.9, Height: 0.5, Type: "mob", Category: HostileMob} + Pig = Entity{ID: 59, InternalID: 59, DisplayName: "Pig", Name: "pig", Width: 0.9, Height: 0.9, Type: "mob", Category: PassiveMob} + Piglin = Entity{ID: 60, InternalID: 60, DisplayName: "Piglin", Name: "piglin", Width: 0.6, Height: 1.95, Type: "UNKNOWN", Category: Unknown} + PiglinBrute = Entity{ID: 61, InternalID: 61, DisplayName: "Piglin Brute", Name: "piglin_brute", Width: 0.6, Height: 1.95, Type: "UNKNOWN", Category: Unknown} + Pillager = Entity{ID: 62, InternalID: 62, DisplayName: "Pillager", Name: "pillager", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + PolarBear = Entity{ID: 63, InternalID: 63, DisplayName: "Polar Bear", Name: "polar_bear", Width: 1.4, Height: 1.4, Type: "mob", Category: PassiveMob} + Tnt = Entity{ID: 64, InternalID: 64, DisplayName: "Primed TNT", Name: "tnt", Width: 0.98, Height: 0.98, Type: "mob", Category: Blocks} + Pufferfish = Entity{ID: 65, InternalID: 65, DisplayName: "Pufferfish", Name: "pufferfish", Width: 0.7, Height: 0.7, Type: "mob", Category: PassiveMob} + Rabbit = Entity{ID: 66, InternalID: 66, DisplayName: "Rabbit", Name: "rabbit", Width: 0.4, Height: 0.5, Type: "mob", Category: PassiveMob} + Ravager = Entity{ID: 67, InternalID: 67, DisplayName: "Ravager", Name: "ravager", Width: 1.95, Height: 2.2, Type: "mob", Category: HostileMob} + Salmon = Entity{ID: 68, InternalID: 68, DisplayName: "Salmon", Name: "salmon", Width: 0.7, Height: 0.4, Type: "mob", Category: PassiveMob} + Sheep = Entity{ID: 69, InternalID: 69, DisplayName: "Sheep", Name: "sheep", Width: 0.9, Height: 1.3, Type: "mob", Category: PassiveMob} + Shulker = Entity{ID: 70, InternalID: 70, DisplayName: "Shulker", Name: "shulker", Width: 1, Height: 1, Type: "mob", Category: HostileMob} + ShulkerBullet = Entity{ID: 71, InternalID: 71, DisplayName: "Shulker Bullet", Name: "shulker_bullet", Width: 0.3125, Height: 0.3125, Type: "mob", Category: Projectiles} + Silverfish = Entity{ID: 72, InternalID: 72, DisplayName: "Silverfish", Name: "silverfish", Width: 0.4, Height: 0.3, Type: "mob", Category: HostileMob} + Skeleton = Entity{ID: 73, InternalID: 73, DisplayName: "Skeleton", Name: "skeleton", Width: 0.6, Height: 1.99, Type: "mob", Category: HostileMob} + SkeletonHorse = Entity{ID: 74, InternalID: 74, DisplayName: "Skeleton Horse", Name: "skeleton_horse", Width: 1.39648, Height: 1.6, Type: "mob", Category: PassiveMob} + Slime = Entity{ID: 75, InternalID: 75, DisplayName: "Slime", Name: "slime", Width: 2.04, Height: 2.04, Type: "mob", Category: HostileMob} + SmallFireball = Entity{ID: 76, InternalID: 76, DisplayName: "Small Fireball", Name: "small_fireball", Width: 0.3125, Height: 0.3125, Type: "mob", Category: Projectiles} + SnowGolem = Entity{ID: 77, InternalID: 77, DisplayName: "Snow Golem", Name: "snow_golem", Width: 0.7, Height: 1.9, Type: "mob", Category: PassiveMob} + Snowball = Entity{ID: 78, InternalID: 78, DisplayName: "Snowball", Name: "snowball", Width: 0.25, Height: 0.25, Type: "mob", Category: Projectiles} + SpectralArrow = Entity{ID: 79, InternalID: 79, DisplayName: "Spectral Arrow", Name: "spectral_arrow", Width: 0.5, Height: 0.5, Type: "mob", Category: Projectiles} + Spider = Entity{ID: 80, InternalID: 80, DisplayName: "Spider", Name: "spider", Width: 1.4, Height: 0.9, Type: "mob", Category: HostileMob} + Squid = Entity{ID: 81, InternalID: 81, DisplayName: "Squid", Name: "squid", Width: 0.8, Height: 0.8, Type: "mob", Category: PassiveMob} + Stray = Entity{ID: 82, InternalID: 82, DisplayName: "Stray", Name: "stray", Width: 0.6, Height: 1.99, Type: "mob", Category: HostileMob} + Strider = Entity{ID: 83, InternalID: 83, DisplayName: "Strider", Name: "strider", Width: 0.9, Height: 1.7, Type: "UNKNOWN", Category: Unknown} + Egg = Entity{ID: 84, InternalID: 84, DisplayName: "Thrown Egg", Name: "egg", Width: 0.25, Height: 0.25, Type: "mob", Category: Projectiles} + EnderPearl = Entity{ID: 85, InternalID: 85, DisplayName: "Thrown Ender Pearl", Name: "ender_pearl", Width: 0.25, Height: 0.25, Type: "mob", Category: Projectiles} + ExperienceBottle = Entity{ID: 86, InternalID: 86, DisplayName: "Thrown Bottle o' Enchanting", Name: "experience_bottle", Width: 0.25, Height: 0.25, Type: "mob", Category: Unknown} + Potion = Entity{ID: 87, InternalID: 87, DisplayName: "Potion", Name: "potion", Width: 0.25, Height: 0.25, Type: "mob", Category: Projectiles} + Trident = Entity{ID: 88, InternalID: 88, DisplayName: "Trident", Name: "trident", Width: 0.5, Height: 0.5, Type: "mob", Category: Unknown} + TraderLlama = Entity{ID: 89, InternalID: 89, DisplayName: "Trader Llama", Name: "trader_llama", Width: 0.9, Height: 1.87, Type: "mob", Category: PassiveMob} + TropicalFish = Entity{ID: 90, InternalID: 90, DisplayName: "Tropical Fish", Name: "tropical_fish", Width: 0.5, Height: 0.4, Type: "mob", Category: PassiveMob} + Turtle = Entity{ID: 91, InternalID: 91, DisplayName: "Turtle", Name: "turtle", Width: 1.2, Height: 0.4, Type: "mob", Category: PassiveMob} + Vex = Entity{ID: 92, InternalID: 92, DisplayName: "Vex", Name: "vex", Width: 0.4, Height: 0.8, Type: "mob", Category: HostileMob} + Villager = Entity{ID: 93, InternalID: 93, DisplayName: "Villager", Name: "villager", Width: 0.6, Height: 1.95, Type: "mob", Category: PassiveMob} + Vindicator = Entity{ID: 94, InternalID: 94, DisplayName: "Vindicator", Name: "vindicator", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + WanderingTrader = Entity{ID: 95, InternalID: 95, DisplayName: "Wandering Trader", Name: "wandering_trader", Width: 0.6, Height: 1.95, Type: "mob", Category: PassiveMob} + Witch = Entity{ID: 96, InternalID: 96, DisplayName: "Witch", Name: "witch", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + Wither = Entity{ID: 97, InternalID: 97, DisplayName: "Wither", Name: "wither", Width: 0.9, Height: 3.5, Type: "mob", Category: HostileMob} + WitherSkeleton = Entity{ID: 98, InternalID: 98, DisplayName: "Wither Skeleton", Name: "wither_skeleton", Width: 0.7, Height: 2.4, Type: "mob", Category: HostileMob} + WitherSkull = Entity{ID: 99, InternalID: 99, DisplayName: "Wither Skull", Name: "wither_skull", Width: 0.3125, Height: 0.3125, Type: "mob", Category: Projectiles} + Wolf = Entity{ID: 100, InternalID: 100, DisplayName: "Wolf", Name: "wolf", Width: 0.6, Height: 0.85, Type: "mob", Category: PassiveMob} + Zoglin = Entity{ID: 101, InternalID: 101, DisplayName: "Zoglin", Name: "zoglin", Width: 1.39648, Height: 1.4, Type: "UNKNOWN", Category: Unknown} + Zombie = Entity{ID: 102, InternalID: 102, DisplayName: "Zombie", Name: "zombie", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + ZombieHorse = Entity{ID: 103, InternalID: 103, DisplayName: "Zombie Horse", Name: "zombie_horse", Width: 1.39648, Height: 1.6, Type: "mob", Category: PassiveMob} + ZombieVillager = Entity{ID: 104, InternalID: 104, DisplayName: "Zombie Villager", Name: "zombie_villager", Width: 0.6, Height: 1.95, Type: "mob", Category: HostileMob} + ZombifiedPiglin = Entity{ID: 105, InternalID: 105, DisplayName: "Zombified Piglin", Name: "zombified_piglin", Width: 0.6, Height: 1.95, Type: "UNKNOWN", Category: Unknown} + Player = Entity{ID: 106, InternalID: 106, DisplayName: "Player", Name: "player", Width: 0.6, Height: 1.8, Type: "mob", Category: Unknown} + FishingBobber = Entity{ID: 107, InternalID: 107, DisplayName: "Fishing Bobber", Name: "fishing_bobber", Width: 0.25, Height: 0.25, Type: "mob", Category: Unknown} +) + +// ByID is an index of minecraft entities by their ID. +var ByID = map[ID]*Entity{ + 0: &AreaEffectCloud, + 1: &ArmorStand, + 2: &Arrow, + 3: &Bat, + 4: &Bee, + 5: &Blaze, + 6: &Boat, + 7: &Cat, + 8: &CaveSpider, + 9: &Chicken, + 10: &Cod, + 11: &Cow, + 12: &Creeper, + 13: &Dolphin, + 14: &Donkey, + 15: &DragonFireball, + 16: &Drowned, + 17: &ElderGuardian, + 18: &EndCrystal, + 19: &EnderDragon, + 20: &Enderman, + 21: &Endermite, + 22: &Evoker, + 23: &EvokerFangs, + 24: &ExperienceOrb, + 25: &EyeOfEnder, + 26: &FallingBlock, + 27: &FireworkRocket, + 28: &Fox, + 29: &Ghast, + 30: &Giant, + 31: &Guardian, + 32: &Hoglin, + 33: &Horse, + 34: &Husk, + 35: &Illusioner, + 36: &IronGolem, + 37: &Item, + 38: &ItemFrame, + 39: &Fireball, + 40: &LeashKnot, + 41: &LightningBolt, + 42: &Llama, + 43: &LlamaSpit, + 44: &MagmaCube, + 45: &Minecart, + 46: &ChestMinecart, + 47: &CommandBlockMinecart, + 48: &FurnaceMinecart, + 49: &HopperMinecart, + 50: &SpawnerMinecart, + 51: &TntMinecart, + 52: &Mule, + 53: &Mooshroom, + 54: &Ocelot, + 55: &Painting, + 56: &Panda, + 57: &Parrot, + 58: &Phantom, + 59: &Pig, + 60: &Piglin, + 61: &PiglinBrute, + 62: &Pillager, + 63: &PolarBear, + 64: &Tnt, + 65: &Pufferfish, + 66: &Rabbit, + 67: &Ravager, + 68: &Salmon, + 69: &Sheep, + 70: &Shulker, + 71: &ShulkerBullet, + 72: &Silverfish, + 73: &Skeleton, + 74: &SkeletonHorse, + 75: &Slime, + 76: &SmallFireball, + 77: &SnowGolem, + 78: &Snowball, + 79: &SpectralArrow, + 80: &Spider, + 81: &Squid, + 82: &Stray, + 83: &Strider, + 84: &Egg, + 85: &EnderPearl, + 86: &ExperienceBottle, + 87: &Potion, + 88: &Trident, + 89: &TraderLlama, + 90: &TropicalFish, + 91: &Turtle, + 92: &Vex, + 93: &Villager, + 94: &Vindicator, + 95: &WanderingTrader, + 96: &Witch, + 97: &Wither, + 98: &WitherSkeleton, + 99: &WitherSkull, + 100: &Wolf, + 101: &Zoglin, + 102: &Zombie, + 103: &ZombieHorse, + 104: &ZombieVillager, + 105: &ZombifiedPiglin, + 106: &Player, + 107: &FishingBobber, +} diff --git a/data/entity/gen_entity.go b/data/entity/gen_entity.go new file mode 100644 index 0000000..1a577f1 --- /dev/null +++ b/data/entity/gen_entity.go @@ -0,0 +1,184 @@ +// gen_entity.go generates entity information. + +//+build ignore + +package main + +import ( + "encoding/json" + "fmt" + "go/ast" + "go/format" + "go/token" + "net/http" + "os" + "reflect" + "strconv" + + "github.com/iancoleman/strcase" +) + +const ( + infoURL = "https://raw.githubusercontent.com/PrismarineJS/minecraft-data/master/data/pc/1.16.2/entities.json" +) + +type Entity struct { + ID uint32 `json:"id"` + InternalID uint32 `json:"internalId"` + DisplayName string `json:"displayName"` + Name string `json:"name"` + + Width float64 `json:"width"` + Height float64 `json:"height"` + + Type string `json:"type"` + Category string `json:"category"` +} + +func downloadInfo() ([]Entity, error) { + resp, err := http.Get(infoURL) + if err != nil { + return nil, err + } + defer resp.Body.Close() + + var data []Entity + if err := json.NewDecoder(resp.Body).Decode(&data); err != nil { + return nil, err + } + return data, nil +} + +func makeEntityDeclaration(entities []Entity) *ast.DeclStmt { + out := &ast.DeclStmt{Decl: &ast.GenDecl{Tok: token.VAR}} + + for _, e := range entities { + t := reflect.TypeOf(e) + fields := make([]ast.Expr, t.NumField()) + + for i := 0; i < t.NumField(); i++ { + ft := t.Field(i) + + if ft.Name == "Category" { + val := &ast.BasicLit{Kind: token.IDENT, Value: "Unknown"} + switch e.Category { + case "Passive mobs": + val.Value = "PassiveMob" + case "Hostile mobs": + val.Value = "HostileMob" + case "UNKNOWN": + default: + val.Value = e.Category + } + fields[i] = &ast.KeyValueExpr{ + Key: &ast.Ident{Name: ft.Name}, + Value: val, + } + continue + } + + var val ast.Expr + switch ft.Type.Kind() { + case reflect.Uint32, reflect.Int: + val = &ast.BasicLit{Kind: token.INT, Value: fmt.Sprint(reflect.ValueOf(e).Field(i))} + case reflect.Float64: + val = &ast.BasicLit{Kind: token.FLOAT, Value: fmt.Sprint(reflect.ValueOf(e).Field(i))} + case reflect.String: + val = &ast.BasicLit{Kind: token.STRING, Value: strconv.Quote(reflect.ValueOf(e).Field(i).String())} + case reflect.Bool: + val = &ast.BasicLit{Kind: token.IDENT, Value: fmt.Sprint(reflect.ValueOf(e).Field(i).Bool())} + + case reflect.Slice: + val = &ast.CompositeLit{ + Type: &ast.ArrayType{ + Elt: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Elem().Name()}, + }, + } + v := reflect.ValueOf(e).Field(i) + switch ft.Type.Elem().Kind() { + case reflect.Uint32, reflect.Int: + for x := 0; x < v.Len(); x++ { + val.(*ast.CompositeLit).Elts = append(val.(*ast.CompositeLit).Elts, &ast.BasicLit{ + Kind: token.INT, + Value: fmt.Sprint(v.Index(x)), + }) + } + } + } + + fields[i] = &ast.KeyValueExpr{ + Key: &ast.Ident{Name: ft.Name}, + Value: val, + } + } + + out.Decl.(*ast.GenDecl).Specs = append(out.Decl.(*ast.GenDecl).Specs, &ast.ValueSpec{ + Names: []*ast.Ident{{Name: strcase.ToCamel(e.Name)}}, + Values: []ast.Expr{ + &ast.CompositeLit{ + Type: &ast.Ident{Name: reflect.TypeOf(e).Name()}, + Elts: fields, + }, + }, + }) + } + + return out +} + +func main() { + entities, err := downloadInfo() + if err != nil { + fmt.Fprintf(os.Stderr, "Error: %v\n", err) + os.Exit(1) + } + + fmt.Println(`// Package entity stores information about entities in Minecraft. +package entity + +// ID describes the numeric ID of an entity. +type ID uint32 + +// Category groups like entities. +type Category uint8 + +// Valid entity categories. +const ( + Unknown Category = iota + Blocks + Immobile + Vehicles + Drops + Projectiles + PassiveMob + HostileMob +) + +// Entity describes information about a type of entity. +type Entity struct { + ID ID + InternalID uint32 + DisplayName string + Name string + + Width float64 + Height float64 + + Type string + Category Category +} + +`) + format.Node(os.Stdout, token.NewFileSet(), makeEntityDeclaration(entities)) + + fmt.Println() + fmt.Println() + fmt.Println("// ByID is an index of minecraft entities by their ID.") + fmt.Println("var ByID = map[ID]*Entity{") + for _, e := range entities { + fmt.Printf(" %d: &%s,\n", e.ID, strcase.ToCamel(e.Name)) + } + fmt.Println("}") + + fmt.Println() +} diff --git a/data/gen_packetIDs.go b/data/gen_packetIDs.go new file mode 100644 index 0000000..19e20ad --- /dev/null +++ b/data/gen_packetIDs.go @@ -0,0 +1,196 @@ +// gen_packetIDs.go generates the enumeration of packet IDs used on the wire. + +//+build ignore + +package main + +import ( + "encoding/json" + "fmt" + "net/http" + "os" + "strings" + + "github.com/iancoleman/strcase" +) + +const ( + protocolURL = "https://raw.githubusercontent.com/PrismarineJS/minecraft-data/master/data/pc/1.16.2/protocol.json" +) + +// unnest is a utility function to unpack a value from a nested map, given +// an arbitrary set of keys to reach through. +func unnest(input map[string]interface{}, keys ...string) (map[string]interface{}, error) { + for _, k := range keys { + sub, ok := input[k] + if !ok { + return nil, fmt.Errorf("key %q not found", k) + } + next, ok := sub.(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("key %q was %T, expected a string map", k, sub) + } + input = next + } + return input, nil +} + +type duplexMappings struct { + Clientbound map[string]string + Serverbound map[string]string +} + +func (m *duplexMappings) EnsureUniqueNames() { + // Assemble a slice of keys to check across both maps, because we cannot + // mutate a map while iterating it. + clientKeys := make([]string, 0, len(m.Clientbound)) + for k, _ := range m.Clientbound { + clientKeys = append(clientKeys, k) + } + + for _, k := range clientKeys { + if _, alsoServerKey := m.Serverbound[k]; alsoServerKey { + cVal, sVal := m.Clientbound[k], m.Serverbound[k] + delete(m.Clientbound, k) + delete(m.Serverbound, k) + m.Clientbound[k+"Clientbound"] = cVal + m.Serverbound[k+"Serverbound"] = sVal + } + } +} + +// unpackMapping returns the set of packet IDs and their names for a given +// game state. +func unpackMapping(data map[string]interface{}, gameState string) (duplexMappings, error) { + out := duplexMappings{ + Clientbound: make(map[string]string), + Serverbound: make(map[string]string), + } + + info, err := unnest(data, gameState, "toClient", "types") + if err != nil { + return duplexMappings{}, err + } + pType := info["packet"].([]interface{})[1].([]interface{})[0].(map[string]interface{})["type"] + mappings := pType.([]interface{})[1].(map[string]interface{})["mappings"].(map[string]interface{}) + for k, v := range mappings { + out.Clientbound[strcase.ToCamel(v.(string))] = k + } + info, err = unnest(data, gameState, "toServer", "types") + if err != nil { + return duplexMappings{}, err + } + pType = info["packet"].([]interface{})[1].([]interface{})[0].(map[string]interface{})["type"] + mappings = pType.([]interface{})[1].(map[string]interface{})["mappings"].(map[string]interface{}) + for k, v := range mappings { + out.Serverbound[strcase.ToCamel(v.(string))] = k + } + + return out, nil +} + +type protocolIDs struct { + Login duplexMappings + Play duplexMappings + Status duplexMappings + // Handshake state has no packets +} + +func (p protocolIDs) MaxLen() int { + var max int + for _, m := range []duplexMappings{p.Login, p.Play, p.Status} { + for k, _ := range m.Clientbound { + if len(k) > max { + max = len(k) + } + } + for k, _ := range m.Serverbound { + if len(k) > max { + max = len(k) + } + } + } + return max +} + +func downloadInfo() (*protocolIDs, error) { + resp, err := http.Get(protocolURL) + if err != nil { + return nil, err + } + defer resp.Body.Close() + var data map[string]interface{} + if err := json.NewDecoder(resp.Body).Decode(&data); err != nil { + return nil, err + } + + var out protocolIDs + if out.Login, err = unpackMapping(data, "login"); err != nil { + return nil, fmt.Errorf("login: %v", err) + } + out.Login.EnsureUniqueNames() + if out.Play, err = unpackMapping(data, "play"); err != nil { + return nil, fmt.Errorf("play: %v", err) + } + out.Play.EnsureUniqueNames() + if out.Status, err = unpackMapping(data, "status"); err != nil { + return nil, fmt.Errorf("play: %v", err) + } + out.Status.EnsureUniqueNames() + + return &out, nil +} + +func main() { + pIDs, err := downloadInfo() + if err != nil { + fmt.Fprintf(os.Stderr, "Error: %v\n", err) + os.Exit(1) + } + + maxLen := pIDs.MaxLen() + + fmt.Println("package data") + fmt.Println() + fmt.Println("//go:generate bash -c \"go run gen_packetIDs.go > packetIDs.go\"") + fmt.Println() + fmt.Println("// This file is automatically generated by gen_packetIDs.go. DO NOT EDIT.") + fmt.Println() + fmt.Println("// PktID represents a packet ID used in the minecraft protocol.") + fmt.Println("type PktID int32") + fmt.Println() + fmt.Println("// Valid PktID values.") + fmt.Println("const (") + + fmt.Println(" // Clientbound packets for connections in the login state.") + for k, v := range pIDs.Login.Clientbound { + fmt.Printf(" %s%s PktID = %s\n", k, strings.Repeat(" ", maxLen-len(k)), v) + } + fmt.Println(" // Serverbound packets for connections in the login state.") + for k, v := range pIDs.Login.Serverbound { + fmt.Printf(" %s%s PktID = %s\n", k, strings.Repeat(" ", maxLen-len(k)), v) + } + fmt.Println() + + fmt.Println(" // Clientbound packets for connections in the play state.") + for k, v := range pIDs.Play.Clientbound { + fmt.Printf(" %s%s PktID = %s\n", k, strings.Repeat(" ", maxLen-len(k)), v) + } + fmt.Println(" // Serverbound packets for connections in the play state.") + for k, v := range pIDs.Play.Serverbound { + fmt.Printf(" %s%s PktID = %s\n", k, strings.Repeat(" ", maxLen-len(k)), v) + } + fmt.Println() + + fmt.Println(" // Clientbound packets used to respond to ping/status requests.") + for k, v := range pIDs.Status.Clientbound { + fmt.Printf(" %s%s PktID = %s\n", k, strings.Repeat(" ", maxLen-len(k)), v) + } + fmt.Println(" // Serverbound packets used to ping or read server status.") + for k, v := range pIDs.Status.Serverbound { + fmt.Printf(" %s%s PktID = %s\n", k, strings.Repeat(" ", maxLen-len(k)), v) + } + fmt.Println() + + fmt.Println(")") +} diff --git a/data/inv/inv.go b/data/inv/inv.go new file mode 100644 index 0000000..358ac7f --- /dev/null +++ b/data/inv/inv.go @@ -0,0 +1,30 @@ +// Package inv maps window types to inventory slot information. +package inv + +type Info struct { + Name string + Start, End int // Player inventory + Slots int +} + +func (i Info) PlayerInvStart() int { + return i.Start +} + +func (i Info) PlayerInvEnd() int { + return i.End +} + +func (i Info) HotbarIdx(place int) int { + return i.End - (8 - place) +} + +var ByType = map[int]Info{ + -1: Info{Name: "inventory", Start: 9, End: 44, Slots: 46}, + 0: Info{Name: "generic_9x1", Start: 1 * 9, End: 1*9 + 35, Slots: 1*9 + 36}, + 1: Info{Name: "generic_9x2", Start: 2 * 9, End: 2*9 + 35, Slots: 2*9 + 36}, + 2: Info{Name: "generic_9x3", Start: 3 * 9, End: 3*9 + 35, Slots: 3*9 + 36}, + 3: Info{Name: "generic_9x4", Start: 4 * 9, End: 4*9 + 35, Slots: 4*9 + 36}, + 4: Info{Name: "generic_9x5", Start: 5 * 9, End: 5*9 + 35, Slots: 5*9 + 36}, + 5: Info{Name: "generic_9x6", Start: 6 * 9, End: 6*9 + 35, Slots: 6*9 + 36}, +} diff --git a/data/item/gen_item.go b/data/item/gen_item.go new file mode 100644 index 0000000..754223d --- /dev/null +++ b/data/item/gen_item.go @@ -0,0 +1,168 @@ +// gen_blocks.go generates block information. + +//+build ignore + +package main + +import ( + "encoding/json" + "fmt" + "go/ast" + "go/format" + "go/token" + "net/http" + "os" + "reflect" + "strconv" + + "github.com/iancoleman/strcase" +) + +const ( + infoURL = "https://raw.githubusercontent.com/PrismarineJS/minecraft-data/master/data/pc/1.16.2/items.json" +) + +type Item struct { + ID uint32 `json:"id"` + DisplayName string `json:"displayName"` + Name string `json:"name"` + StackSize uint `json:"stackSize"` +} + +func downloadInfo() ([]Item, error) { + resp, err := http.Get(infoURL) + if err != nil { + return nil, err + } + defer resp.Body.Close() + + var data []Item + if err := json.NewDecoder(resp.Body).Decode(&data); err != nil { + return nil, err + } + return data, nil +} + +func makeItemDeclaration(blocks []Item) *ast.DeclStmt { + out := &ast.DeclStmt{Decl: &ast.GenDecl{Tok: token.VAR}} + + for _, b := range blocks { + t := reflect.TypeOf(b) + fields := make([]ast.Expr, t.NumField()) + + for i := 0; i < t.NumField(); i++ { + ft := t.Field(i) + + var val ast.Expr + switch ft.Type.Kind() { + case reflect.Uint32, reflect.Int, reflect.Uint: + val = &ast.BasicLit{Kind: token.INT, Value: fmt.Sprint(reflect.ValueOf(b).Field(i))} + case reflect.Float64: + val = &ast.BasicLit{Kind: token.FLOAT, Value: fmt.Sprint(reflect.ValueOf(b).Field(i))} + case reflect.String: + val = &ast.BasicLit{Kind: token.STRING, Value: strconv.Quote(reflect.ValueOf(b).Field(i).String())} + case reflect.Bool: + val = &ast.BasicLit{Kind: token.IDENT, Value: fmt.Sprint(reflect.ValueOf(b).Field(i).Bool())} + + case reflect.Slice: + val = &ast.CompositeLit{ + Type: &ast.ArrayType{ + Elt: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Elem().Name()}, + }, + } + v := reflect.ValueOf(b).Field(i) + switch ft.Type.Elem().Kind() { + case reflect.Uint32, reflect.Int: + for x := 0; x < v.Len(); x++ { + val.(*ast.CompositeLit).Elts = append(val.(*ast.CompositeLit).Elts, &ast.BasicLit{ + Kind: token.INT, + Value: fmt.Sprint(v.Index(x)), + }) + } + } + + case reflect.Map: + // Must be the NeedsTools map of type map[uint32]bool. + m := &ast.CompositeLit{ + Type: &ast.MapType{ + Key: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Key().Name()}, + Value: &ast.BasicLit{Kind: token.IDENT, Value: ft.Type.Elem().Name()}, + }, + } + iter := reflect.ValueOf(b).Field(i).MapRange() + for iter.Next() { + m.Elts = append(m.Elts, &ast.KeyValueExpr{ + Key: &ast.BasicLit{Kind: token.INT, Value: fmt.Sprint(iter.Key().Uint())}, + Value: &ast.BasicLit{Kind: token.IDENT, Value: fmt.Sprint(iter.Value().Bool())}, + }) + } + + val = m + } + + fields[i] = &ast.KeyValueExpr{ + Key: &ast.Ident{Name: ft.Name}, + Value: val, + } + } + + out.Decl.(*ast.GenDecl).Specs = append(out.Decl.(*ast.GenDecl).Specs, &ast.ValueSpec{ + Names: []*ast.Ident{{Name: strcase.ToCamel(b.Name)}}, + Values: []ast.Expr{ + &ast.CompositeLit{ + Type: &ast.Ident{Name: reflect.TypeOf(b).Name()}, + Elts: fields, + }, + }, + }) + } + + return out +} + +func main() { + items, err := downloadInfo() + if err != nil { + fmt.Fprintf(os.Stderr, "Error: %v\n", err) + os.Exit(1) + } + + fmt.Println(`// Package item stores information about items in Minecraft. +package item + +import ( + "math" +) + +// ID describes the numeric ID of an item. +type ID uint32 + +// Item describes information about a type of item. +type Item struct { + ID ID + DisplayName string + Name string + StackSize uint +} + +`) + format.Node(os.Stdout, token.NewFileSet(), makeItemDeclaration(items)) + + fmt.Println() + fmt.Println() + fmt.Println("// ByID is an index of minecraft items by their ID.") + fmt.Println("var ByID = map[ID]*Item{") + for _, i := range items { + fmt.Printf(" %d: &%s,\n", i.ID, strcase.ToCamel(i.Name)) + } + fmt.Println("}") + fmt.Println() + + fmt.Println("// ByName is an index of minecraft items by their name.") + fmt.Println("var ByName = map[string]*Item{") + for _, i := range items { + fmt.Printf(" %q: &%s,\n", i.Name, strcase.ToCamel(i.Name)) + } + fmt.Println("}") + fmt.Println() +} diff --git a/data/item/item.go b/data/item/item.go new file mode 100644 index 0000000..e306f48 --- /dev/null +++ b/data/item/item.go @@ -0,0 +1,2952 @@ +// Package item stores information about items in Minecraft. +package item + +// ID describes the numeric ID of an item. +type ID uint32 + +// Item describes information about a type of item. +type Item struct { + ID ID + DisplayName string + Name string + StackSize uint +} + +var ( + Air = Item{ID: 0, DisplayName: "Air", Name: "air", StackSize: 0} + Stone = Item{ID: 1, DisplayName: "Stone", Name: "stone", StackSize: 64} + Granite = Item{ID: 2, DisplayName: "Granite", Name: "granite", StackSize: 64} + PolishedGranite = Item{ID: 3, DisplayName: "Polished Granite", Name: "polished_granite", StackSize: 64} + Diorite = Item{ID: 4, DisplayName: "Diorite", Name: "diorite", StackSize: 64} + PolishedDiorite = Item{ID: 5, DisplayName: "Polished Diorite", Name: "polished_diorite", StackSize: 64} + Andesite = Item{ID: 6, DisplayName: "Andesite", Name: "andesite", StackSize: 64} + PolishedAndesite = Item{ID: 7, DisplayName: "Polished Andesite", Name: "polished_andesite", StackSize: 64} + GrassBlock = Item{ID: 8, DisplayName: "Grass Block", Name: "grass_block", StackSize: 64} + Dirt = Item{ID: 9, DisplayName: "Dirt", Name: "dirt", StackSize: 64} + CoarseDirt = Item{ID: 10, DisplayName: "Coarse Dirt", Name: "coarse_dirt", StackSize: 64} + Podzol = Item{ID: 11, DisplayName: "Podzol", Name: "podzol", StackSize: 64} + CrimsonNylium = Item{ID: 12, DisplayName: "Crimson Nylium", Name: "crimson_nylium", StackSize: 64} + WarpedNylium = Item{ID: 13, DisplayName: "Warped Nylium", Name: "warped_nylium", StackSize: 64} + Cobblestone = Item{ID: 14, DisplayName: "Cobblestone", Name: "cobblestone", StackSize: 64} + OakPlanks = Item{ID: 15, DisplayName: "Oak Planks", Name: "oak_planks", StackSize: 64} + SprucePlanks = Item{ID: 16, DisplayName: "Spruce Planks", Name: "spruce_planks", StackSize: 64} + BirchPlanks = Item{ID: 17, DisplayName: "Birch Planks", Name: "birch_planks", StackSize: 64} + JunglePlanks = Item{ID: 18, DisplayName: "Jungle Planks", Name: "jungle_planks", StackSize: 64} + AcaciaPlanks = Item{ID: 19, DisplayName: "Acacia Planks", Name: "acacia_planks", StackSize: 64} + DarkOakPlanks = Item{ID: 20, DisplayName: "Dark Oak Planks", Name: "dark_oak_planks", StackSize: 64} + CrimsonPlanks = Item{ID: 21, DisplayName: "Crimson Planks", Name: "crimson_planks", StackSize: 64} + WarpedPlanks = Item{ID: 22, DisplayName: "Warped Planks", Name: "warped_planks", StackSize: 64} + OakSapling = Item{ID: 23, DisplayName: "Oak Sapling", Name: "oak_sapling", StackSize: 64} + SpruceSapling = Item{ID: 24, DisplayName: "Spruce Sapling", Name: "spruce_sapling", StackSize: 64} + BirchSapling = Item{ID: 25, DisplayName: "Birch Sapling", Name: "birch_sapling", StackSize: 64} + JungleSapling = Item{ID: 26, DisplayName: "Jungle Sapling", Name: "jungle_sapling", StackSize: 64} + AcaciaSapling = Item{ID: 27, DisplayName: "Acacia Sapling", Name: "acacia_sapling", StackSize: 64} + DarkOakSapling = Item{ID: 28, DisplayName: "Dark Oak Sapling", Name: "dark_oak_sapling", StackSize: 64} + Bedrock = Item{ID: 29, DisplayName: "Bedrock", Name: "bedrock", StackSize: 64} + Sand = Item{ID: 30, DisplayName: "Sand", Name: "sand", StackSize: 64} + RedSand = Item{ID: 31, DisplayName: "Red Sand", Name: "red_sand", StackSize: 64} + Gravel = Item{ID: 32, DisplayName: "Gravel", Name: "gravel", StackSize: 64} + GoldOre = Item{ID: 33, DisplayName: "Gold Ore", Name: "gold_ore", StackSize: 64} + IronOre = Item{ID: 34, DisplayName: "Iron Ore", Name: "iron_ore", StackSize: 64} + CoalOre = Item{ID: 35, DisplayName: "Coal Ore", Name: "coal_ore", StackSize: 64} + NetherGoldOre = Item{ID: 36, DisplayName: "Nether Gold Ore", Name: "nether_gold_ore", StackSize: 64} + OakLog = Item{ID: 37, DisplayName: "Oak Log", Name: "oak_log", StackSize: 64} + SpruceLog = Item{ID: 38, DisplayName: "Spruce Log", Name: "spruce_log", StackSize: 64} + BirchLog = Item{ID: 39, DisplayName: "Birch Log", Name: "birch_log", StackSize: 64} + JungleLog = Item{ID: 40, DisplayName: "Jungle Log", Name: "jungle_log", StackSize: 64} + AcaciaLog = Item{ID: 41, DisplayName: "Acacia Log", Name: "acacia_log", StackSize: 64} + DarkOakLog = Item{ID: 42, DisplayName: "Dark Oak Log", Name: "dark_oak_log", StackSize: 64} + CrimsonStem = Item{ID: 43, DisplayName: "Crimson Stem", Name: "crimson_stem", StackSize: 64} + WarpedStem = Item{ID: 44, DisplayName: "Warped Stem", Name: "warped_stem", StackSize: 64} + StrippedOakLog = Item{ID: 45, DisplayName: "Stripped Oak Log", Name: "stripped_oak_log", StackSize: 64} + StrippedSpruceLog = Item{ID: 46, DisplayName: "Stripped Spruce Log", Name: "stripped_spruce_log", StackSize: 64} + StrippedBirchLog = Item{ID: 47, DisplayName: "Stripped Birch Log", Name: "stripped_birch_log", StackSize: 64} + StrippedJungleLog = Item{ID: 48, DisplayName: "Stripped Jungle Log", Name: "stripped_jungle_log", StackSize: 64} + StrippedAcaciaLog = Item{ID: 49, DisplayName: "Stripped Acacia Log", Name: "stripped_acacia_log", StackSize: 64} + StrippedDarkOakLog = Item{ID: 50, DisplayName: "Stripped Dark Oak Log", Name: "stripped_dark_oak_log", StackSize: 64} + StrippedCrimsonStem = Item{ID: 51, DisplayName: "Stripped Crimson Stem", Name: "stripped_crimson_stem", StackSize: 64} + StrippedWarpedStem = Item{ID: 52, DisplayName: "Stripped Warped Stem", Name: "stripped_warped_stem", StackSize: 64} + StrippedOakWood = Item{ID: 53, DisplayName: "Stripped Oak Wood", Name: "stripped_oak_wood", StackSize: 64} + StrippedSpruceWood = Item{ID: 54, DisplayName: "Stripped Spruce Wood", Name: "stripped_spruce_wood", StackSize: 64} + StrippedBirchWood = Item{ID: 55, DisplayName: "Stripped Birch Wood", Name: "stripped_birch_wood", StackSize: 64} + StrippedJungleWood = Item{ID: 56, DisplayName: "Stripped Jungle Wood", Name: "stripped_jungle_wood", StackSize: 64} + StrippedAcaciaWood = Item{ID: 57, DisplayName: "Stripped Acacia Wood", Name: "stripped_acacia_wood", StackSize: 64} + StrippedDarkOakWood = Item{ID: 58, DisplayName: "Stripped Dark Oak Wood", Name: "stripped_dark_oak_wood", StackSize: 64} + StrippedCrimsonHyphae = Item{ID: 59, DisplayName: "Stripped Crimson Hyphae", Name: "stripped_crimson_hyphae", StackSize: 64} + StrippedWarpedHyphae = Item{ID: 60, DisplayName: "Stripped Warped Hyphae", Name: "stripped_warped_hyphae", StackSize: 64} + OakWood = Item{ID: 61, DisplayName: "Oak Wood", Name: "oak_wood", StackSize: 64} + SpruceWood = Item{ID: 62, DisplayName: "Spruce Wood", Name: "spruce_wood", StackSize: 64} + BirchWood = Item{ID: 63, DisplayName: "Birch Wood", Name: "birch_wood", StackSize: 64} + JungleWood = Item{ID: 64, DisplayName: "Jungle Wood", Name: "jungle_wood", StackSize: 64} + AcaciaWood = Item{ID: 65, DisplayName: "Acacia Wood", Name: "acacia_wood", StackSize: 64} + DarkOakWood = Item{ID: 66, DisplayName: "Dark Oak Wood", Name: "dark_oak_wood", StackSize: 64} + CrimsonHyphae = Item{ID: 67, DisplayName: "Crimson Hyphae", Name: "crimson_hyphae", StackSize: 64} + WarpedHyphae = Item{ID: 68, DisplayName: "Warped Hyphae", Name: "warped_hyphae", StackSize: 64} + OakLeaves = Item{ID: 69, DisplayName: "Oak Leaves", Name: "oak_leaves", StackSize: 64} + SpruceLeaves = Item{ID: 70, DisplayName: "Spruce Leaves", Name: "spruce_leaves", StackSize: 64} + BirchLeaves = Item{ID: 71, DisplayName: "Birch Leaves", Name: "birch_leaves", StackSize: 64} + JungleLeaves = Item{ID: 72, DisplayName: "Jungle Leaves", Name: "jungle_leaves", StackSize: 64} + AcaciaLeaves = Item{ID: 73, DisplayName: "Acacia Leaves", Name: "acacia_leaves", StackSize: 64} + DarkOakLeaves = Item{ID: 74, DisplayName: "Dark Oak Leaves", Name: "dark_oak_leaves", StackSize: 64} + Sponge = Item{ID: 75, DisplayName: "Sponge", Name: "sponge", StackSize: 64} + WetSponge = Item{ID: 76, DisplayName: "Wet Sponge", Name: "wet_sponge", StackSize: 64} + Glass = Item{ID: 77, DisplayName: "Glass", Name: "glass", StackSize: 64} + LapisOre = Item{ID: 78, DisplayName: "Lapis Lazuli Ore", Name: "lapis_ore", StackSize: 64} + LapisBlock = Item{ID: 79, DisplayName: "Lapis Lazuli Block", Name: "lapis_block", StackSize: 64} + Dispenser = Item{ID: 80, DisplayName: "Dispenser", Name: "dispenser", StackSize: 64} + Sandstone = Item{ID: 81, DisplayName: "Sandstone", Name: "sandstone", StackSize: 64} + ChiseledSandstone = Item{ID: 82, DisplayName: "Chiseled Sandstone", Name: "chiseled_sandstone", StackSize: 64} + CutSandstone = Item{ID: 83, DisplayName: "Cut Sandstone", Name: "cut_sandstone", StackSize: 64} + NoteBlock = Item{ID: 84, DisplayName: "Note Block", Name: "note_block", StackSize: 64} + PoweredRail = Item{ID: 85, DisplayName: "Powered Rail", Name: "powered_rail", StackSize: 64} + DetectorRail = Item{ID: 86, DisplayName: "Detector Rail", Name: "detector_rail", StackSize: 64} + StickyPiston = Item{ID: 87, DisplayName: "Sticky Piston", Name: "sticky_piston", StackSize: 64} + Cobweb = Item{ID: 88, DisplayName: "Cobweb", Name: "cobweb", StackSize: 64} + Grass = Item{ID: 89, DisplayName: "Grass", Name: "grass", StackSize: 64} + Fern = Item{ID: 90, DisplayName: "Fern", Name: "fern", StackSize: 64} + DeadBush = Item{ID: 91, DisplayName: "Dead Bush", Name: "dead_bush", StackSize: 64} + Seagrass = Item{ID: 92, DisplayName: "Seagrass", Name: "seagrass", StackSize: 64} + SeaPickle = Item{ID: 93, DisplayName: "Sea Pickle", Name: "sea_pickle", StackSize: 64} + Piston = Item{ID: 94, DisplayName: "Piston", Name: "piston", StackSize: 64} + WhiteWool = Item{ID: 95, DisplayName: "White Wool", Name: "white_wool", StackSize: 64} + OrangeWool = Item{ID: 96, DisplayName: "Orange Wool", Name: "orange_wool", StackSize: 64} + MagentaWool = Item{ID: 97, DisplayName: "Magenta Wool", Name: "magenta_wool", StackSize: 64} + LightBlueWool = Item{ID: 98, DisplayName: "Light Blue Wool", Name: "light_blue_wool", StackSize: 64} + YellowWool = Item{ID: 99, DisplayName: "Yellow Wool", Name: "yellow_wool", StackSize: 64} + LimeWool = Item{ID: 100, DisplayName: "Lime Wool", Name: "lime_wool", StackSize: 64} + PinkWool = Item{ID: 101, DisplayName: "Pink Wool", Name: "pink_wool", StackSize: 64} + GrayWool = Item{ID: 102, DisplayName: "Gray Wool", Name: "gray_wool", StackSize: 64} + LightGrayWool = Item{ID: 103, DisplayName: "Light Gray Wool", Name: "light_gray_wool", StackSize: 64} + CyanWool = Item{ID: 104, DisplayName: "Cyan Wool", Name: "cyan_wool", StackSize: 64} + PurpleWool = Item{ID: 105, DisplayName: "Purple Wool", Name: "purple_wool", StackSize: 64} + BlueWool = Item{ID: 106, DisplayName: "Blue Wool", Name: "blue_wool", StackSize: 64} + BrownWool = Item{ID: 107, DisplayName: "Brown Wool", Name: "brown_wool", StackSize: 64} + GreenWool = Item{ID: 108, DisplayName: "Green Wool", Name: "green_wool", StackSize: 64} + RedWool = Item{ID: 109, DisplayName: "Red Wool", Name: "red_wool", StackSize: 64} + BlackWool = Item{ID: 110, DisplayName: "Black Wool", Name: "black_wool", StackSize: 64} + Dandelion = Item{ID: 111, DisplayName: "Dandelion", Name: "dandelion", StackSize: 64} + Poppy = Item{ID: 112, DisplayName: "Poppy", Name: "poppy", StackSize: 64} + BlueOrchid = Item{ID: 113, DisplayName: "Blue Orchid", Name: "blue_orchid", StackSize: 64} + Allium = Item{ID: 114, DisplayName: "Allium", Name: "allium", StackSize: 64} + AzureBluet = Item{ID: 115, DisplayName: "Azure Bluet", Name: "azure_bluet", StackSize: 64} + RedTulip = Item{ID: 116, DisplayName: "Red Tulip", Name: "red_tulip", StackSize: 64} + OrangeTulip = Item{ID: 117, DisplayName: "Orange Tulip", Name: "orange_tulip", StackSize: 64} + WhiteTulip = Item{ID: 118, DisplayName: "White Tulip", Name: "white_tulip", StackSize: 64} + PinkTulip = Item{ID: 119, DisplayName: "Pink Tulip", Name: "pink_tulip", StackSize: 64} + OxeyeDaisy = Item{ID: 120, DisplayName: "Oxeye Daisy", Name: "oxeye_daisy", StackSize: 64} + Cornflower = Item{ID: 121, DisplayName: "Cornflower", Name: "cornflower", StackSize: 64} + LilyOfTheValley = Item{ID: 122, DisplayName: "Lily of the Valley", Name: "lily_of_the_valley", StackSize: 64} + WitherRose = Item{ID: 123, DisplayName: "Wither Rose", Name: "wither_rose", StackSize: 64} + BrownMushroom = Item{ID: 124, DisplayName: "Brown Mushroom", Name: "brown_mushroom", StackSize: 64} + RedMushroom = Item{ID: 125, DisplayName: "Red Mushroom", Name: "red_mushroom", StackSize: 64} + CrimsonFungus = Item{ID: 126, DisplayName: "Crimson Fungus", Name: "crimson_fungus", StackSize: 64} + WarpedFungus = Item{ID: 127, DisplayName: "Warped Fungus", Name: "warped_fungus", StackSize: 64} + CrimsonRoots = Item{ID: 128, DisplayName: "Crimson Roots", Name: "crimson_roots", StackSize: 64} + WarpedRoots = Item{ID: 129, DisplayName: "Warped Roots", Name: "warped_roots", StackSize: 64} + NetherSprouts = Item{ID: 130, DisplayName: "Nether Sprouts", Name: "nether_sprouts", StackSize: 64} + WeepingVines = Item{ID: 131, DisplayName: "Weeping Vines", Name: "weeping_vines", StackSize: 64} + TwistingVines = Item{ID: 132, DisplayName: "Twisting Vines", Name: "twisting_vines", StackSize: 64} + SugarCane = Item{ID: 133, DisplayName: "Sugar Cane", Name: "sugar_cane", StackSize: 64} + Kelp = Item{ID: 134, DisplayName: "Kelp", Name: "kelp", StackSize: 64} + Bamboo = Item{ID: 135, DisplayName: "Bamboo", Name: "bamboo", StackSize: 64} + GoldBlock = Item{ID: 136, DisplayName: "Block of Gold", Name: "gold_block", StackSize: 64} + IronBlock = Item{ID: 137, DisplayName: "Block of Iron", Name: "iron_block", StackSize: 64} + OakSlab = Item{ID: 138, DisplayName: "Oak Slab", Name: "oak_slab", StackSize: 64} + SpruceSlab = Item{ID: 139, DisplayName: "Spruce Slab", Name: "spruce_slab", StackSize: 64} + BirchSlab = Item{ID: 140, DisplayName: "Birch Slab", Name: "birch_slab", StackSize: 64} + JungleSlab = Item{ID: 141, DisplayName: "Jungle Slab", Name: "jungle_slab", StackSize: 64} + AcaciaSlab = Item{ID: 142, DisplayName: "Acacia Slab", Name: "acacia_slab", StackSize: 64} + DarkOakSlab = Item{ID: 143, DisplayName: "Dark Oak Slab", Name: "dark_oak_slab", StackSize: 64} + CrimsonSlab = Item{ID: 144, DisplayName: "Crimson Slab", Name: "crimson_slab", StackSize: 64} + WarpedSlab = Item{ID: 145, DisplayName: "Warped Slab", Name: "warped_slab", StackSize: 64} + StoneSlab = Item{ID: 146, DisplayName: "Stone Slab", Name: "stone_slab", StackSize: 64} + SmoothStoneSlab = Item{ID: 147, DisplayName: "Smooth Stone Slab", Name: "smooth_stone_slab", StackSize: 64} + SandstoneSlab = Item{ID: 148, DisplayName: "Sandstone Slab", Name: "sandstone_slab", StackSize: 64} + CutSandstoneSlab = Item{ID: 149, DisplayName: "Cut Sandstone Slab", Name: "cut_sandstone_slab", StackSize: 64} + PetrifiedOakSlab = Item{ID: 150, DisplayName: "Petrified Oak Slab", Name: "petrified_oak_slab", StackSize: 64} + CobblestoneSlab = Item{ID: 151, DisplayName: "Cobblestone Slab", Name: "cobblestone_slab", StackSize: 64} + BrickSlab = Item{ID: 152, DisplayName: "Brick Slab", Name: "brick_slab", StackSize: 64} + StoneBrickSlab = Item{ID: 153, DisplayName: "Stone Brick Slab", Name: "stone_brick_slab", StackSize: 64} + NetherBrickSlab = Item{ID: 154, DisplayName: "Nether Brick Slab", Name: "nether_brick_slab", StackSize: 64} + QuartzSlab = Item{ID: 155, DisplayName: "Quartz Slab", Name: "quartz_slab", StackSize: 64} + RedSandstoneSlab = Item{ID: 156, DisplayName: "Red Sandstone Slab", Name: "red_sandstone_slab", StackSize: 64} + CutRedSandstoneSlab = Item{ID: 157, DisplayName: "Cut Red Sandstone Slab", Name: "cut_red_sandstone_slab", StackSize: 64} + PurpurSlab = Item{ID: 158, DisplayName: "Purpur Slab", Name: "purpur_slab", StackSize: 64} + PrismarineSlab = Item{ID: 159, DisplayName: "Prismarine Slab", Name: "prismarine_slab", StackSize: 64} + PrismarineBrickSlab = Item{ID: 160, DisplayName: "Prismarine Brick Slab", Name: "prismarine_brick_slab", StackSize: 64} + DarkPrismarineSlab = Item{ID: 161, DisplayName: "Dark Prismarine Slab", Name: "dark_prismarine_slab", StackSize: 64} + SmoothQuartz = Item{ID: 162, DisplayName: "Smooth Quartz Block", Name: "smooth_quartz", StackSize: 64} + SmoothRedSandstone = Item{ID: 163, DisplayName: "Smooth Red Sandstone", Name: "smooth_red_sandstone", StackSize: 64} + SmoothSandstone = Item{ID: 164, DisplayName: "Smooth Sandstone", Name: "smooth_sandstone", StackSize: 64} + SmoothStone = Item{ID: 165, DisplayName: "Smooth Stone", Name: "smooth_stone", StackSize: 64} + Bricks = Item{ID: 166, DisplayName: "Bricks", Name: "bricks", StackSize: 64} + Tnt = Item{ID: 167, DisplayName: "TNT", Name: "tnt", StackSize: 64} + Bookshelf = Item{ID: 168, DisplayName: "Bookshelf", Name: "bookshelf", StackSize: 64} + MossyCobblestone = Item{ID: 169, DisplayName: "Mossy Cobblestone", Name: "mossy_cobblestone", StackSize: 64} + Obsidian = Item{ID: 170, DisplayName: "Obsidian", Name: "obsidian", StackSize: 64} + Torch = Item{ID: 171, DisplayName: "Torch", Name: "torch", StackSize: 64} + EndRod = Item{ID: 172, DisplayName: "End Rod", Name: "end_rod", StackSize: 64} + ChorusPlant = Item{ID: 173, DisplayName: "Chorus Plant", Name: "chorus_plant", StackSize: 64} + ChorusFlower = Item{ID: 174, DisplayName: "Chorus Flower", Name: "chorus_flower", StackSize: 64} + PurpurBlock = Item{ID: 175, DisplayName: "Purpur Block", Name: "purpur_block", StackSize: 64} + PurpurPillar = Item{ID: 176, DisplayName: "Purpur Pillar", Name: "purpur_pillar", StackSize: 64} + PurpurStairs = Item{ID: 177, DisplayName: "Purpur Stairs", Name: "purpur_stairs", StackSize: 64} + Spawner = Item{ID: 178, DisplayName: "Spawner", Name: "spawner", StackSize: 64} + OakStairs = Item{ID: 179, DisplayName: "Oak Stairs", Name: "oak_stairs", StackSize: 64} + Chest = Item{ID: 180, DisplayName: "Chest", Name: "chest", StackSize: 64} + DiamondOre = Item{ID: 181, DisplayName: "Diamond Ore", Name: "diamond_ore", StackSize: 64} + DiamondBlock = Item{ID: 182, DisplayName: "Block of Diamond", Name: "diamond_block", StackSize: 64} + CraftingTable = Item{ID: 183, DisplayName: "Crafting Table", Name: "crafting_table", StackSize: 64} + Farmland = Item{ID: 184, DisplayName: "Farmland", Name: "farmland", StackSize: 64} + Furnace = Item{ID: 185, DisplayName: "Furnace", Name: "furnace", StackSize: 64} + Ladder = Item{ID: 186, DisplayName: "Ladder", Name: "ladder", StackSize: 64} + Rail = Item{ID: 187, DisplayName: "Rail", Name: "rail", StackSize: 64} + CobblestoneStairs = Item{ID: 188, DisplayName: "Cobblestone Stairs", Name: "cobblestone_stairs", StackSize: 64} + Lever = Item{ID: 189, DisplayName: "Lever", Name: "lever", StackSize: 64} + StonePressurePlate = Item{ID: 190, DisplayName: "Stone Pressure Plate", Name: "stone_pressure_plate", StackSize: 64} + OakPressurePlate = Item{ID: 191, DisplayName: "Oak Pressure Plate", Name: "oak_pressure_plate", StackSize: 64} + SprucePressurePlate = Item{ID: 192, DisplayName: "Spruce Pressure Plate", Name: "spruce_pressure_plate", StackSize: 64} + BirchPressurePlate = Item{ID: 193, DisplayName: "Birch Pressure Plate", Name: "birch_pressure_plate", StackSize: 64} + JunglePressurePlate = Item{ID: 194, DisplayName: "Jungle Pressure Plate", Name: "jungle_pressure_plate", StackSize: 64} + AcaciaPressurePlate = Item{ID: 195, DisplayName: "Acacia Pressure Plate", Name: "acacia_pressure_plate", StackSize: 64} + DarkOakPressurePlate = Item{ID: 196, DisplayName: "Dark Oak Pressure Plate", Name: "dark_oak_pressure_plate", StackSize: 64} + CrimsonPressurePlate = Item{ID: 197, DisplayName: "Crimson Pressure Plate", Name: "crimson_pressure_plate", StackSize: 64} + WarpedPressurePlate = Item{ID: 198, DisplayName: "Warped Pressure Plate", Name: "warped_pressure_plate", StackSize: 64} + PolishedBlackstonePressurePlate = Item{ID: 199, DisplayName: "Polished Blackstone Pressure Plate", Name: "polished_blackstone_pressure_plate", StackSize: 64} + RedstoneOre = Item{ID: 200, DisplayName: "Redstone Ore", Name: "redstone_ore", StackSize: 64} + RedstoneTorch = Item{ID: 201, DisplayName: "Redstone Torch", Name: "redstone_torch", StackSize: 64} + Snow = Item{ID: 202, DisplayName: "Snow", Name: "snow", StackSize: 64} + Ice = Item{ID: 203, DisplayName: "Ice", Name: "ice", StackSize: 64} + SnowBlock = Item{ID: 204, DisplayName: "Snow Block", Name: "snow_block", StackSize: 64} + Cactus = Item{ID: 205, DisplayName: "Cactus", Name: "cactus", StackSize: 64} + Clay = Item{ID: 206, DisplayName: "Clay", Name: "clay", StackSize: 64} + Jukebox = Item{ID: 207, DisplayName: "Jukebox", Name: "jukebox", StackSize: 64} + OakFence = Item{ID: 208, DisplayName: "Oak Fence", Name: "oak_fence", StackSize: 64} + SpruceFence = Item{ID: 209, DisplayName: "Spruce Fence", Name: "spruce_fence", StackSize: 64} + BirchFence = Item{ID: 210, DisplayName: "Birch Fence", Name: "birch_fence", StackSize: 64} + JungleFence = Item{ID: 211, DisplayName: "Jungle Fence", Name: "jungle_fence", StackSize: 64} + AcaciaFence = Item{ID: 212, DisplayName: "Acacia Fence", Name: "acacia_fence", StackSize: 64} + DarkOakFence = Item{ID: 213, DisplayName: "Dark Oak Fence", Name: "dark_oak_fence", StackSize: 64} + CrimsonFence = Item{ID: 214, DisplayName: "Crimson Fence", Name: "crimson_fence", StackSize: 64} + WarpedFence = Item{ID: 215, DisplayName: "Warped Fence", Name: "warped_fence", StackSize: 64} + Pumpkin = Item{ID: 216, DisplayName: "Pumpkin", Name: "pumpkin", StackSize: 64} + CarvedPumpkin = Item{ID: 217, DisplayName: "Carved Pumpkin", Name: "carved_pumpkin", StackSize: 64} + Netherrack = Item{ID: 218, DisplayName: "Netherrack", Name: "netherrack", StackSize: 64} + SoulSand = Item{ID: 219, DisplayName: "Soul Sand", Name: "soul_sand", StackSize: 64} + SoulSoil = Item{ID: 220, DisplayName: "Soul Soil", Name: "soul_soil", StackSize: 64} + Basalt = Item{ID: 221, DisplayName: "Basalt", Name: "basalt", StackSize: 64} + PolishedBasalt = Item{ID: 222, DisplayName: "Polished Basalt", Name: "polished_basalt", StackSize: 64} + SoulTorch = Item{ID: 223, DisplayName: "Soul Torch", Name: "soul_torch", StackSize: 64} + Glowstone = Item{ID: 224, DisplayName: "Glowstone", Name: "glowstone", StackSize: 64} + JackOLantern = Item{ID: 225, DisplayName: "Jack o'Lantern", Name: "jack_o_lantern", StackSize: 64} + OakTrapdoor = Item{ID: 226, DisplayName: "Oak Trapdoor", Name: "oak_trapdoor", StackSize: 64} + SpruceTrapdoor = Item{ID: 227, DisplayName: "Spruce Trapdoor", Name: "spruce_trapdoor", StackSize: 64} + BirchTrapdoor = Item{ID: 228, DisplayName: "Birch Trapdoor", Name: "birch_trapdoor", StackSize: 64} + JungleTrapdoor = Item{ID: 229, DisplayName: "Jungle Trapdoor", Name: "jungle_trapdoor", StackSize: 64} + AcaciaTrapdoor = Item{ID: 230, DisplayName: "Acacia Trapdoor", Name: "acacia_trapdoor", StackSize: 64} + DarkOakTrapdoor = Item{ID: 231, DisplayName: "Dark Oak Trapdoor", Name: "dark_oak_trapdoor", StackSize: 64} + CrimsonTrapdoor = Item{ID: 232, DisplayName: "Crimson Trapdoor", Name: "crimson_trapdoor", StackSize: 64} + WarpedTrapdoor = Item{ID: 233, DisplayName: "Warped Trapdoor", Name: "warped_trapdoor", StackSize: 64} + InfestedStone = Item{ID: 234, DisplayName: "Infested Stone", Name: "infested_stone", StackSize: 64} + InfestedCobblestone = Item{ID: 235, DisplayName: "Infested Cobblestone", Name: "infested_cobblestone", StackSize: 64} + InfestedStoneBricks = Item{ID: 236, DisplayName: "Infested Stone Bricks", Name: "infested_stone_bricks", StackSize: 64} + InfestedMossyStoneBricks = Item{ID: 237, DisplayName: "Infested Mossy Stone Bricks", Name: "infested_mossy_stone_bricks", StackSize: 64} + InfestedCrackedStoneBricks = Item{ID: 238, DisplayName: "Infested Cracked Stone Bricks", Name: "infested_cracked_stone_bricks", StackSize: 64} + InfestedChiseledStoneBricks = Item{ID: 239, DisplayName: "Infested Chiseled Stone Bricks", Name: "infested_chiseled_stone_bricks", StackSize: 64} + StoneBricks = Item{ID: 240, DisplayName: "Stone Bricks", Name: "stone_bricks", StackSize: 64} + MossyStoneBricks = Item{ID: 241, DisplayName: "Mossy Stone Bricks", Name: "mossy_stone_bricks", StackSize: 64} + CrackedStoneBricks = Item{ID: 242, DisplayName: "Cracked Stone Bricks", Name: "cracked_stone_bricks", StackSize: 64} + ChiseledStoneBricks = Item{ID: 243, DisplayName: "Chiseled Stone Bricks", Name: "chiseled_stone_bricks", StackSize: 64} + BrownMushroomBlock = Item{ID: 244, DisplayName: "Brown Mushroom Block", Name: "brown_mushroom_block", StackSize: 64} + RedMushroomBlock = Item{ID: 245, DisplayName: "Red Mushroom Block", Name: "red_mushroom_block", StackSize: 64} + MushroomStem = Item{ID: 246, DisplayName: "Mushroom Stem", Name: "mushroom_stem", StackSize: 64} + IronBars = Item{ID: 247, DisplayName: "Iron Bars", Name: "iron_bars", StackSize: 64} + Chain = Item{ID: 248, DisplayName: "Chain", Name: "chain", StackSize: 64} + GlassPane = Item{ID: 249, DisplayName: "Glass Pane", Name: "glass_pane", StackSize: 64} + Melon = Item{ID: 250, DisplayName: "Melon", Name: "melon", StackSize: 64} + Vine = Item{ID: 251, DisplayName: "Vines", Name: "vine", StackSize: 64} + OakFenceGate = Item{ID: 252, DisplayName: "Oak Fence Gate", Name: "oak_fence_gate", StackSize: 64} + SpruceFenceGate = Item{ID: 253, DisplayName: "Spruce Fence Gate", Name: "spruce_fence_gate", StackSize: 64} + BirchFenceGate = Item{ID: 254, DisplayName: "Birch Fence Gate", Name: "birch_fence_gate", StackSize: 64} + JungleFenceGate = Item{ID: 255, DisplayName: "Jungle Fence Gate", Name: "jungle_fence_gate", StackSize: 64} + AcaciaFenceGate = Item{ID: 256, DisplayName: "Acacia Fence Gate", Name: "acacia_fence_gate", StackSize: 64} + DarkOakFenceGate = Item{ID: 257, DisplayName: "Dark Oak Fence Gate", Name: "dark_oak_fence_gate", StackSize: 64} + CrimsonFenceGate = Item{ID: 258, DisplayName: "Crimson Fence Gate", Name: "crimson_fence_gate", StackSize: 64} + WarpedFenceGate = Item{ID: 259, DisplayName: "Warped Fence Gate", Name: "warped_fence_gate", StackSize: 64} + BrickStairs = Item{ID: 260, DisplayName: "Brick Stairs", Name: "brick_stairs", StackSize: 64} + StoneBrickStairs = Item{ID: 261, DisplayName: "Stone Brick Stairs", Name: "stone_brick_stairs", StackSize: 64} + Mycelium = Item{ID: 262, DisplayName: "Mycelium", Name: "mycelium", StackSize: 64} + LilyPad = Item{ID: 263, DisplayName: "Lily Pad", Name: "lily_pad", StackSize: 64} + NetherBricks = Item{ID: 264, DisplayName: "Nether Bricks", Name: "nether_bricks", StackSize: 64} + CrackedNetherBricks = Item{ID: 265, DisplayName: "Cracked Nether Bricks", Name: "cracked_nether_bricks", StackSize: 64} + ChiseledNetherBricks = Item{ID: 266, DisplayName: "Chiseled Nether Bricks", Name: "chiseled_nether_bricks", StackSize: 64} + NetherBrickFence = Item{ID: 267, DisplayName: "Nether Brick Fence", Name: "nether_brick_fence", StackSize: 64} + NetherBrickStairs = Item{ID: 268, DisplayName: "Nether Brick Stairs", Name: "nether_brick_stairs", StackSize: 64} + EnchantingTable = Item{ID: 269, DisplayName: "Enchanting Table", Name: "enchanting_table", StackSize: 64} + EndPortalFrame = Item{ID: 270, DisplayName: "End Portal Frame", Name: "end_portal_frame", StackSize: 64} + EndStone = Item{ID: 271, DisplayName: "End Stone", Name: "end_stone", StackSize: 64} + EndStoneBricks = Item{ID: 272, DisplayName: "End Stone Bricks", Name: "end_stone_bricks", StackSize: 64} + DragonEgg = Item{ID: 273, DisplayName: "Dragon Egg", Name: "dragon_egg", StackSize: 64} + RedstoneLamp = Item{ID: 274, DisplayName: "Redstone Lamp", Name: "redstone_lamp", StackSize: 64} + SandstoneStairs = Item{ID: 275, DisplayName: "Sandstone Stairs", Name: "sandstone_stairs", StackSize: 64} + EmeraldOre = Item{ID: 276, DisplayName: "Emerald Ore", Name: "emerald_ore", StackSize: 64} + EnderChest = Item{ID: 277, DisplayName: "Ender Chest", Name: "ender_chest", StackSize: 64} + TripwireHook = Item{ID: 278, DisplayName: "Tripwire Hook", Name: "tripwire_hook", StackSize: 64} + EmeraldBlock = Item{ID: 279, DisplayName: "Block of Emerald", Name: "emerald_block", StackSize: 64} + SpruceStairs = Item{ID: 280, DisplayName: "Spruce Stairs", Name: "spruce_stairs", StackSize: 64} + BirchStairs = Item{ID: 281, DisplayName: "Birch Stairs", Name: "birch_stairs", StackSize: 64} + JungleStairs = Item{ID: 282, DisplayName: "Jungle Stairs", Name: "jungle_stairs", StackSize: 64} + CrimsonStairs = Item{ID: 283, DisplayName: "Crimson Stairs", Name: "crimson_stairs", StackSize: 64} + WarpedStairs = Item{ID: 284, DisplayName: "Warped Stairs", Name: "warped_stairs", StackSize: 64} + CommandBlock = Item{ID: 285, DisplayName: "Command Block", Name: "command_block", StackSize: 64} + Beacon = Item{ID: 286, DisplayName: "Beacon", Name: "beacon", StackSize: 64} + CobblestoneWall = Item{ID: 287, DisplayName: "Cobblestone Wall", Name: "cobblestone_wall", StackSize: 64} + MossyCobblestoneWall = Item{ID: 288, DisplayName: "Mossy Cobblestone Wall", Name: "mossy_cobblestone_wall", StackSize: 64} + BrickWall = Item{ID: 289, DisplayName: "Brick Wall", Name: "brick_wall", StackSize: 64} + PrismarineWall = Item{ID: 290, DisplayName: "Prismarine Wall", Name: "prismarine_wall", StackSize: 64} + RedSandstoneWall = Item{ID: 291, DisplayName: "Red Sandstone Wall", Name: "red_sandstone_wall", StackSize: 64} + MossyStoneBrickWall = Item{ID: 292, DisplayName: "Mossy Stone Brick Wall", Name: "mossy_stone_brick_wall", StackSize: 64} + GraniteWall = Item{ID: 293, DisplayName: "Granite Wall", Name: "granite_wall", StackSize: 64} + StoneBrickWall = Item{ID: 294, DisplayName: "Stone Brick Wall", Name: "stone_brick_wall", StackSize: 64} + NetherBrickWall = Item{ID: 295, DisplayName: "Nether Brick Wall", Name: "nether_brick_wall", StackSize: 64} + AndesiteWall = Item{ID: 296, DisplayName: "Andesite Wall", Name: "andesite_wall", StackSize: 64} + RedNetherBrickWall = Item{ID: 297, DisplayName: "Red Nether Brick Wall", Name: "red_nether_brick_wall", StackSize: 64} + SandstoneWall = Item{ID: 298, DisplayName: "Sandstone Wall", Name: "sandstone_wall", StackSize: 64} + EndStoneBrickWall = Item{ID: 299, DisplayName: "End Stone Brick Wall", Name: "end_stone_brick_wall", StackSize: 64} + DioriteWall = Item{ID: 300, DisplayName: "Diorite Wall", Name: "diorite_wall", StackSize: 64} + BlackstoneWall = Item{ID: 301, DisplayName: "Blackstone Wall", Name: "blackstone_wall", StackSize: 64} + PolishedBlackstoneWall = Item{ID: 302, DisplayName: "Polished Blackstone Wall", Name: "polished_blackstone_wall", StackSize: 64} + PolishedBlackstoneBrickWall = Item{ID: 303, DisplayName: "Polished Blackstone Brick Wall", Name: "polished_blackstone_brick_wall", StackSize: 64} + StoneButton = Item{ID: 304, DisplayName: "Stone Button", Name: "stone_button", StackSize: 64} + OakButton = Item{ID: 305, DisplayName: "Oak Button", Name: "oak_button", StackSize: 64} + SpruceButton = Item{ID: 306, DisplayName: "Spruce Button", Name: "spruce_button", StackSize: 64} + BirchButton = Item{ID: 307, DisplayName: "Birch Button", Name: "birch_button", StackSize: 64} + JungleButton = Item{ID: 308, DisplayName: "Jungle Button", Name: "jungle_button", StackSize: 64} + AcaciaButton = Item{ID: 309, DisplayName: "Acacia Button", Name: "acacia_button", StackSize: 64} + DarkOakButton = Item{ID: 310, DisplayName: "Dark Oak Button", Name: "dark_oak_button", StackSize: 64} + CrimsonButton = Item{ID: 311, DisplayName: "Crimson Button", Name: "crimson_button", StackSize: 64} + WarpedButton = Item{ID: 312, DisplayName: "Warped Button", Name: "warped_button", StackSize: 64} + PolishedBlackstoneButton = Item{ID: 313, DisplayName: "Polished Blackstone Button", Name: "polished_blackstone_button", StackSize: 64} + Anvil = Item{ID: 314, DisplayName: "Anvil", Name: "anvil", StackSize: 64} + ChippedAnvil = Item{ID: 315, DisplayName: "Chipped Anvil", Name: "chipped_anvil", StackSize: 64} + DamagedAnvil = Item{ID: 316, DisplayName: "Damaged Anvil", Name: "damaged_anvil", StackSize: 64} + TrappedChest = Item{ID: 317, DisplayName: "Trapped Chest", Name: "trapped_chest", StackSize: 64} + LightWeightedPressurePlate = Item{ID: 318, DisplayName: "Light Weighted Pressure Plate", Name: "light_weighted_pressure_plate", StackSize: 64} + HeavyWeightedPressurePlate = Item{ID: 319, DisplayName: "Heavy Weighted Pressure Plate", Name: "heavy_weighted_pressure_plate", StackSize: 64} + DaylightDetector = Item{ID: 320, DisplayName: "Daylight Detector", Name: "daylight_detector", StackSize: 64} + RedstoneBlock = Item{ID: 321, DisplayName: "Block of Redstone", Name: "redstone_block", StackSize: 64} + NetherQuartzOre = Item{ID: 322, DisplayName: "Nether Quartz Ore", Name: "nether_quartz_ore", StackSize: 64} + Hopper = Item{ID: 323, DisplayName: "Hopper", Name: "hopper", StackSize: 64} + ChiseledQuartzBlock = Item{ID: 324, DisplayName: "Chiseled Quartz Block", Name: "chiseled_quartz_block", StackSize: 64} + QuartzBlock = Item{ID: 325, DisplayName: "Block of Quartz", Name: "quartz_block", StackSize: 64} + QuartzBricks = Item{ID: 326, DisplayName: "Quartz Bricks", Name: "quartz_bricks", StackSize: 64} + QuartzPillar = Item{ID: 327, DisplayName: "Quartz Pillar", Name: "quartz_pillar", StackSize: 64} + QuartzStairs = Item{ID: 328, DisplayName: "Quartz Stairs", Name: "quartz_stairs", StackSize: 64} + ActivatorRail = Item{ID: 329, DisplayName: "Activator Rail", Name: "activator_rail", StackSize: 64} + Dropper = Item{ID: 330, DisplayName: "Dropper", Name: "dropper", StackSize: 64} + WhiteTerracotta = Item{ID: 331, DisplayName: "White Terracotta", Name: "white_terracotta", StackSize: 64} + OrangeTerracotta = Item{ID: 332, DisplayName: "Orange Terracotta", Name: "orange_terracotta", StackSize: 64} + MagentaTerracotta = Item{ID: 333, DisplayName: "Magenta Terracotta", Name: "magenta_terracotta", StackSize: 64} + LightBlueTerracotta = Item{ID: 334, DisplayName: "Light Blue Terracotta", Name: "light_blue_terracotta", StackSize: 64} + YellowTerracotta = Item{ID: 335, DisplayName: "Yellow Terracotta", Name: "yellow_terracotta", StackSize: 64} + LimeTerracotta = Item{ID: 336, DisplayName: "Lime Terracotta", Name: "lime_terracotta", StackSize: 64} + PinkTerracotta = Item{ID: 337, DisplayName: "Pink Terracotta", Name: "pink_terracotta", StackSize: 64} + GrayTerracotta = Item{ID: 338, DisplayName: "Gray Terracotta", Name: "gray_terracotta", StackSize: 64} + LightGrayTerracotta = Item{ID: 339, DisplayName: "Light Gray Terracotta", Name: "light_gray_terracotta", StackSize: 64} + CyanTerracotta = Item{ID: 340, DisplayName: "Cyan Terracotta", Name: "cyan_terracotta", StackSize: 64} + PurpleTerracotta = Item{ID: 341, DisplayName: "Purple Terracotta", Name: "purple_terracotta", StackSize: 64} + BlueTerracotta = Item{ID: 342, DisplayName: "Blue Terracotta", Name: "blue_terracotta", StackSize: 64} + BrownTerracotta = Item{ID: 343, DisplayName: "Brown Terracotta", Name: "brown_terracotta", StackSize: 64} + GreenTerracotta = Item{ID: 344, DisplayName: "Green Terracotta", Name: "green_terracotta", StackSize: 64} + RedTerracotta = Item{ID: 345, DisplayName: "Red Terracotta", Name: "red_terracotta", StackSize: 64} + BlackTerracotta = Item{ID: 346, DisplayName: "Black Terracotta", Name: "black_terracotta", StackSize: 64} + Barrier = Item{ID: 347, DisplayName: "Barrier", Name: "barrier", StackSize: 64} + IronTrapdoor = Item{ID: 348, DisplayName: "Iron Trapdoor", Name: "iron_trapdoor", StackSize: 64} + HayBlock = Item{ID: 349, DisplayName: "Hay Bale", Name: "hay_block", StackSize: 64} + WhiteCarpet = Item{ID: 350, DisplayName: "White Carpet", Name: "white_carpet", StackSize: 64} + OrangeCarpet = Item{ID: 351, DisplayName: "Orange Carpet", Name: "orange_carpet", StackSize: 64} + MagentaCarpet = Item{ID: 352, DisplayName: "Magenta Carpet", Name: "magenta_carpet", StackSize: 64} + LightBlueCarpet = Item{ID: 353, DisplayName: "Light Blue Carpet", Name: "light_blue_carpet", StackSize: 64} + YellowCarpet = Item{ID: 354, DisplayName: "Yellow Carpet", Name: "yellow_carpet", StackSize: 64} + LimeCarpet = Item{ID: 355, DisplayName: "Lime Carpet", Name: "lime_carpet", StackSize: 64} + PinkCarpet = Item{ID: 356, DisplayName: "Pink Carpet", Name: "pink_carpet", StackSize: 64} + GrayCarpet = Item{ID: 357, DisplayName: "Gray Carpet", Name: "gray_carpet", StackSize: 64} + LightGrayCarpet = Item{ID: 358, DisplayName: "Light Gray Carpet", Name: "light_gray_carpet", StackSize: 64} + CyanCarpet = Item{ID: 359, DisplayName: "Cyan Carpet", Name: "cyan_carpet", StackSize: 64} + PurpleCarpet = Item{ID: 360, DisplayName: "Purple Carpet", Name: "purple_carpet", StackSize: 64} + BlueCarpet = Item{ID: 361, DisplayName: "Blue Carpet", Name: "blue_carpet", StackSize: 64} + BrownCarpet = Item{ID: 362, DisplayName: "Brown Carpet", Name: "brown_carpet", StackSize: 64} + GreenCarpet = Item{ID: 363, DisplayName: "Green Carpet", Name: "green_carpet", StackSize: 64} + RedCarpet = Item{ID: 364, DisplayName: "Red Carpet", Name: "red_carpet", StackSize: 64} + BlackCarpet = Item{ID: 365, DisplayName: "Black Carpet", Name: "black_carpet", StackSize: 64} + Terracotta = Item{ID: 366, DisplayName: "Terracotta", Name: "terracotta", StackSize: 64} + CoalBlock = Item{ID: 367, DisplayName: "Block of Coal", Name: "coal_block", StackSize: 64} + PackedIce = Item{ID: 368, DisplayName: "Packed Ice", Name: "packed_ice", StackSize: 64} + AcaciaStairs = Item{ID: 369, DisplayName: "Acacia Stairs", Name: "acacia_stairs", StackSize: 64} + DarkOakStairs = Item{ID: 370, DisplayName: "Dark Oak Stairs", Name: "dark_oak_stairs", StackSize: 64} + SlimeBlock = Item{ID: 371, DisplayName: "Slime Block", Name: "slime_block", StackSize: 64} + GrassPath = Item{ID: 372, DisplayName: "Grass Path", Name: "grass_path", StackSize: 64} + Sunflower = Item{ID: 373, DisplayName: "Sunflower", Name: "sunflower", StackSize: 64} + Lilac = Item{ID: 374, DisplayName: "Lilac", Name: "lilac", StackSize: 64} + RoseBush = Item{ID: 375, DisplayName: "Rose Bush", Name: "rose_bush", StackSize: 64} + Peony = Item{ID: 376, DisplayName: "Peony", Name: "peony", StackSize: 64} + TallGrass = Item{ID: 377, DisplayName: "Tall Grass", Name: "tall_grass", StackSize: 64} + LargeFern = Item{ID: 378, DisplayName: "Large Fern", Name: "large_fern", StackSize: 64} + WhiteStainedGlass = Item{ID: 379, DisplayName: "White Stained Glass", Name: "white_stained_glass", StackSize: 64} + OrangeStainedGlass = Item{ID: 380, DisplayName: "Orange Stained Glass", Name: "orange_stained_glass", StackSize: 64} + MagentaStainedGlass = Item{ID: 381, DisplayName: "Magenta Stained Glass", Name: "magenta_stained_glass", StackSize: 64} + LightBlueStainedGlass = Item{ID: 382, DisplayName: "Light Blue Stained Glass", Name: "light_blue_stained_glass", StackSize: 64} + YellowStainedGlass = Item{ID: 383, DisplayName: "Yellow Stained Glass", Name: "yellow_stained_glass", StackSize: 64} + LimeStainedGlass = Item{ID: 384, DisplayName: "Lime Stained Glass", Name: "lime_stained_glass", StackSize: 64} + PinkStainedGlass = Item{ID: 385, DisplayName: "Pink Stained Glass", Name: "pink_stained_glass", StackSize: 64} + GrayStainedGlass = Item{ID: 386, DisplayName: "Gray Stained Glass", Name: "gray_stained_glass", StackSize: 64} + LightGrayStainedGlass = Item{ID: 387, DisplayName: "Light Gray Stained Glass", Name: "light_gray_stained_glass", StackSize: 64} + CyanStainedGlass = Item{ID: 388, DisplayName: "Cyan Stained Glass", Name: "cyan_stained_glass", StackSize: 64} + PurpleStainedGlass = Item{ID: 389, DisplayName: "Purple Stained Glass", Name: "purple_stained_glass", StackSize: 64} + BlueStainedGlass = Item{ID: 390, DisplayName: "Blue Stained Glass", Name: "blue_stained_glass", StackSize: 64} + BrownStainedGlass = Item{ID: 391, DisplayName: "Brown Stained Glass", Name: "brown_stained_glass", StackSize: 64} + GreenStainedGlass = Item{ID: 392, DisplayName: "Green Stained Glass", Name: "green_stained_glass", StackSize: 64} + RedStainedGlass = Item{ID: 393, DisplayName: "Red Stained Glass", Name: "red_stained_glass", StackSize: 64} + BlackStainedGlass = Item{ID: 394, DisplayName: "Black Stained Glass", Name: "black_stained_glass", StackSize: 64} + WhiteStainedGlassPane = Item{ID: 395, DisplayName: "White Stained Glass Pane", Name: "white_stained_glass_pane", StackSize: 64} + OrangeStainedGlassPane = Item{ID: 396, DisplayName: "Orange Stained Glass Pane", Name: "orange_stained_glass_pane", StackSize: 64} + MagentaStainedGlassPane = Item{ID: 397, DisplayName: "Magenta Stained Glass Pane", Name: "magenta_stained_glass_pane", StackSize: 64} + LightBlueStainedGlassPane = Item{ID: 398, DisplayName: "Light Blue Stained Glass Pane", Name: "light_blue_stained_glass_pane", StackSize: 64} + YellowStainedGlassPane = Item{ID: 399, DisplayName: "Yellow Stained Glass Pane", Name: "yellow_stained_glass_pane", StackSize: 64} + LimeStainedGlassPane = Item{ID: 400, DisplayName: "Lime Stained Glass Pane", Name: "lime_stained_glass_pane", StackSize: 64} + PinkStainedGlassPane = Item{ID: 401, DisplayName: "Pink Stained Glass Pane", Name: "pink_stained_glass_pane", StackSize: 64} + GrayStainedGlassPane = Item{ID: 402, DisplayName: "Gray Stained Glass Pane", Name: "gray_stained_glass_pane", StackSize: 64} + LightGrayStainedGlassPane = Item{ID: 403, DisplayName: "Light Gray Stained Glass Pane", Name: "light_gray_stained_glass_pane", StackSize: 64} + CyanStainedGlassPane = Item{ID: 404, DisplayName: "Cyan Stained Glass Pane", Name: "cyan_stained_glass_pane", StackSize: 64} + PurpleStainedGlassPane = Item{ID: 405, DisplayName: "Purple Stained Glass Pane", Name: "purple_stained_glass_pane", StackSize: 64} + BlueStainedGlassPane = Item{ID: 406, DisplayName: "Blue Stained Glass Pane", Name: "blue_stained_glass_pane", StackSize: 64} + BrownStainedGlassPane = Item{ID: 407, DisplayName: "Brown Stained Glass Pane", Name: "brown_stained_glass_pane", StackSize: 64} + GreenStainedGlassPane = Item{ID: 408, DisplayName: "Green Stained Glass Pane", Name: "green_stained_glass_pane", StackSize: 64} + RedStainedGlassPane = Item{ID: 409, DisplayName: "Red Stained Glass Pane", Name: "red_stained_glass_pane", StackSize: 64} + BlackStainedGlassPane = Item{ID: 410, DisplayName: "Black Stained Glass Pane", Name: "black_stained_glass_pane", StackSize: 64} + Prismarine = Item{ID: 411, DisplayName: "Prismarine", Name: "prismarine", StackSize: 64} + PrismarineBricks = Item{ID: 412, DisplayName: "Prismarine Bricks", Name: "prismarine_bricks", StackSize: 64} + DarkPrismarine = Item{ID: 413, DisplayName: "Dark Prismarine", Name: "dark_prismarine", StackSize: 64} + PrismarineStairs = Item{ID: 414, DisplayName: "Prismarine Stairs", Name: "prismarine_stairs", StackSize: 64} + PrismarineBrickStairs = Item{ID: 415, DisplayName: "Prismarine Brick Stairs", Name: "prismarine_brick_stairs", StackSize: 64} + DarkPrismarineStairs = Item{ID: 416, DisplayName: "Dark Prismarine Stairs", Name: "dark_prismarine_stairs", StackSize: 64} + SeaLantern = Item{ID: 417, DisplayName: "Sea Lantern", Name: "sea_lantern", StackSize: 64} + RedSandstone = Item{ID: 418, DisplayName: "Red Sandstone", Name: "red_sandstone", StackSize: 64} + ChiseledRedSandstone = Item{ID: 419, DisplayName: "Chiseled Red Sandstone", Name: "chiseled_red_sandstone", StackSize: 64} + CutRedSandstone = Item{ID: 420, DisplayName: "Cut Red Sandstone", Name: "cut_red_sandstone", StackSize: 64} + RedSandstoneStairs = Item{ID: 421, DisplayName: "Red Sandstone Stairs", Name: "red_sandstone_stairs", StackSize: 64} + RepeatingCommandBlock = Item{ID: 422, DisplayName: "Repeating Command Block", Name: "repeating_command_block", StackSize: 64} + ChainCommandBlock = Item{ID: 423, DisplayName: "Chain Command Block", Name: "chain_command_block", StackSize: 64} + MagmaBlock = Item{ID: 424, DisplayName: "Magma Block", Name: "magma_block", StackSize: 64} + NetherWartBlock = Item{ID: 425, DisplayName: "Nether Wart Block", Name: "nether_wart_block", StackSize: 64} + WarpedWartBlock = Item{ID: 426, DisplayName: "Warped Wart Block", Name: "warped_wart_block", StackSize: 64} + RedNetherBricks = Item{ID: 427, DisplayName: "Red Nether Bricks", Name: "red_nether_bricks", StackSize: 64} + BoneBlock = Item{ID: 428, DisplayName: "Bone Block", Name: "bone_block", StackSize: 64} + StructureVoid = Item{ID: 429, DisplayName: "Structure Void", Name: "structure_void", StackSize: 64} + Observer = Item{ID: 430, DisplayName: "Observer", Name: "observer", StackSize: 64} + ShulkerBox = Item{ID: 431, DisplayName: "Shulker Box", Name: "shulker_box", StackSize: 1} + WhiteShulkerBox = Item{ID: 432, DisplayName: "White Shulker Box", Name: "white_shulker_box", StackSize: 1} + OrangeShulkerBox = Item{ID: 433, DisplayName: "Orange Shulker Box", Name: "orange_shulker_box", StackSize: 1} + MagentaShulkerBox = Item{ID: 434, DisplayName: "Magenta Shulker Box", Name: "magenta_shulker_box", StackSize: 1} + LightBlueShulkerBox = Item{ID: 435, DisplayName: "Light Blue Shulker Box", Name: "light_blue_shulker_box", StackSize: 1} + YellowShulkerBox = Item{ID: 436, DisplayName: "Yellow Shulker Box", Name: "yellow_shulker_box", StackSize: 1} + LimeShulkerBox = Item{ID: 437, DisplayName: "Lime Shulker Box", Name: "lime_shulker_box", StackSize: 1} + PinkShulkerBox = Item{ID: 438, DisplayName: "Pink Shulker Box", Name: "pink_shulker_box", StackSize: 1} + GrayShulkerBox = Item{ID: 439, DisplayName: "Gray Shulker Box", Name: "gray_shulker_box", StackSize: 1} + LightGrayShulkerBox = Item{ID: 440, DisplayName: "Light Gray Shulker Box", Name: "light_gray_shulker_box", StackSize: 1} + CyanShulkerBox = Item{ID: 441, DisplayName: "Cyan Shulker Box", Name: "cyan_shulker_box", StackSize: 1} + PurpleShulkerBox = Item{ID: 442, DisplayName: "Purple Shulker Box", Name: "purple_shulker_box", StackSize: 1} + BlueShulkerBox = Item{ID: 443, DisplayName: "Blue Shulker Box", Name: "blue_shulker_box", StackSize: 1} + BrownShulkerBox = Item{ID: 444, DisplayName: "Brown Shulker Box", Name: "brown_shulker_box", StackSize: 1} + GreenShulkerBox = Item{ID: 445, DisplayName: "Green Shulker Box", Name: "green_shulker_box", StackSize: 1} + RedShulkerBox = Item{ID: 446, DisplayName: "Red Shulker Box", Name: "red_shulker_box", StackSize: 1} + BlackShulkerBox = Item{ID: 447, DisplayName: "Black Shulker Box", Name: "black_shulker_box", StackSize: 1} + WhiteGlazedTerracotta = Item{ID: 448, DisplayName: "White Glazed Terracotta", Name: "white_glazed_terracotta", StackSize: 64} + OrangeGlazedTerracotta = Item{ID: 449, DisplayName: "Orange Glazed Terracotta", Name: "orange_glazed_terracotta", StackSize: 64} + MagentaGlazedTerracotta = Item{ID: 450, DisplayName: "Magenta Glazed Terracotta", Name: "magenta_glazed_terracotta", StackSize: 64} + LightBlueGlazedTerracotta = Item{ID: 451, DisplayName: "Light Blue Glazed Terracotta", Name: "light_blue_glazed_terracotta", StackSize: 64} + YellowGlazedTerracotta = Item{ID: 452, DisplayName: "Yellow Glazed Terracotta", Name: "yellow_glazed_terracotta", StackSize: 64} + LimeGlazedTerracotta = Item{ID: 453, DisplayName: "Lime Glazed Terracotta", Name: "lime_glazed_terracotta", StackSize: 64} + PinkGlazedTerracotta = Item{ID: 454, DisplayName: "Pink Glazed Terracotta", Name: "pink_glazed_terracotta", StackSize: 64} + GrayGlazedTerracotta = Item{ID: 455, DisplayName: "Gray Glazed Terracotta", Name: "gray_glazed_terracotta", StackSize: 64} + LightGrayGlazedTerracotta = Item{ID: 456, DisplayName: "Light Gray Glazed Terracotta", Name: "light_gray_glazed_terracotta", StackSize: 64} + CyanGlazedTerracotta = Item{ID: 457, DisplayName: "Cyan Glazed Terracotta", Name: "cyan_glazed_terracotta", StackSize: 64} + PurpleGlazedTerracotta = Item{ID: 458, DisplayName: "Purple Glazed Terracotta", Name: "purple_glazed_terracotta", StackSize: 64} + BlueGlazedTerracotta = Item{ID: 459, DisplayName: "Blue Glazed Terracotta", Name: "blue_glazed_terracotta", StackSize: 64} + BrownGlazedTerracotta = Item{ID: 460, DisplayName: "Brown Glazed Terracotta", Name: "brown_glazed_terracotta", StackSize: 64} + GreenGlazedTerracotta = Item{ID: 461, DisplayName: "Green Glazed Terracotta", Name: "green_glazed_terracotta", StackSize: 64} + RedGlazedTerracotta = Item{ID: 462, DisplayName: "Red Glazed Terracotta", Name: "red_glazed_terracotta", StackSize: 64} + BlackGlazedTerracotta = Item{ID: 463, DisplayName: "Black Glazed Terracotta", Name: "black_glazed_terracotta", StackSize: 64} + WhiteConcrete = Item{ID: 464, DisplayName: "White Concrete", Name: "white_concrete", StackSize: 64} + OrangeConcrete = Item{ID: 465, DisplayName: "Orange Concrete", Name: "orange_concrete", StackSize: 64} + MagentaConcrete = Item{ID: 466, DisplayName: "Magenta Concrete", Name: "magenta_concrete", StackSize: 64} + LightBlueConcrete = Item{ID: 467, DisplayName: "Light Blue Concrete", Name: "light_blue_concrete", StackSize: 64} + YellowConcrete = Item{ID: 468, DisplayName: "Yellow Concrete", Name: "yellow_concrete", StackSize: 64} + LimeConcrete = Item{ID: 469, DisplayName: "Lime Concrete", Name: "lime_concrete", StackSize: 64} + PinkConcrete = Item{ID: 470, DisplayName: "Pink Concrete", Name: "pink_concrete", StackSize: 64} + GrayConcrete = Item{ID: 471, DisplayName: "Gray Concrete", Name: "gray_concrete", StackSize: 64} + LightGrayConcrete = Item{ID: 472, DisplayName: "Light Gray Concrete", Name: "light_gray_concrete", StackSize: 64} + CyanConcrete = Item{ID: 473, DisplayName: "Cyan Concrete", Name: "cyan_concrete", StackSize: 64} + PurpleConcrete = Item{ID: 474, DisplayName: "Purple Concrete", Name: "purple_concrete", StackSize: 64} + BlueConcrete = Item{ID: 475, DisplayName: "Blue Concrete", Name: "blue_concrete", StackSize: 64} + BrownConcrete = Item{ID: 476, DisplayName: "Brown Concrete", Name: "brown_concrete", StackSize: 64} + GreenConcrete = Item{ID: 477, DisplayName: "Green Concrete", Name: "green_concrete", StackSize: 64} + RedConcrete = Item{ID: 478, DisplayName: "Red Concrete", Name: "red_concrete", StackSize: 64} + BlackConcrete = Item{ID: 479, DisplayName: "Black Concrete", Name: "black_concrete", StackSize: 64} + WhiteConcretePowder = Item{ID: 480, DisplayName: "White Concrete Powder", Name: "white_concrete_powder", StackSize: 64} + OrangeConcretePowder = Item{ID: 481, DisplayName: "Orange Concrete Powder", Name: "orange_concrete_powder", StackSize: 64} + MagentaConcretePowder = Item{ID: 482, DisplayName: "Magenta Concrete Powder", Name: "magenta_concrete_powder", StackSize: 64} + LightBlueConcretePowder = Item{ID: 483, DisplayName: "Light Blue Concrete Powder", Name: "light_blue_concrete_powder", StackSize: 64} + YellowConcretePowder = Item{ID: 484, DisplayName: "Yellow Concrete Powder", Name: "yellow_concrete_powder", StackSize: 64} + LimeConcretePowder = Item{ID: 485, DisplayName: "Lime Concrete Powder", Name: "lime_concrete_powder", StackSize: 64} + PinkConcretePowder = Item{ID: 486, DisplayName: "Pink Concrete Powder", Name: "pink_concrete_powder", StackSize: 64} + GrayConcretePowder = Item{ID: 487, DisplayName: "Gray Concrete Powder", Name: "gray_concrete_powder", StackSize: 64} + LightGrayConcretePowder = Item{ID: 488, DisplayName: "Light Gray Concrete Powder", Name: "light_gray_concrete_powder", StackSize: 64} + CyanConcretePowder = Item{ID: 489, DisplayName: "Cyan Concrete Powder", Name: "cyan_concrete_powder", StackSize: 64} + PurpleConcretePowder = Item{ID: 490, DisplayName: "Purple Concrete Powder", Name: "purple_concrete_powder", StackSize: 64} + BlueConcretePowder = Item{ID: 491, DisplayName: "Blue Concrete Powder", Name: "blue_concrete_powder", StackSize: 64} + BrownConcretePowder = Item{ID: 492, DisplayName: "Brown Concrete Powder", Name: "brown_concrete_powder", StackSize: 64} + GreenConcretePowder = Item{ID: 493, DisplayName: "Green Concrete Powder", Name: "green_concrete_powder", StackSize: 64} + RedConcretePowder = Item{ID: 494, DisplayName: "Red Concrete Powder", Name: "red_concrete_powder", StackSize: 64} + BlackConcretePowder = Item{ID: 495, DisplayName: "Black Concrete Powder", Name: "black_concrete_powder", StackSize: 64} + TurtleEgg = Item{ID: 496, DisplayName: "Turtle Egg", Name: "turtle_egg", StackSize: 64} + DeadTubeCoralBlock = Item{ID: 497, DisplayName: "Dead Tube Coral Block", Name: "dead_tube_coral_block", StackSize: 64} + DeadBrainCoralBlock = Item{ID: 498, DisplayName: "Dead Brain Coral Block", Name: "dead_brain_coral_block", StackSize: 64} + DeadBubbleCoralBlock = Item{ID: 499, DisplayName: "Dead Bubble Coral Block", Name: "dead_bubble_coral_block", StackSize: 64} + DeadFireCoralBlock = Item{ID: 500, DisplayName: "Dead Fire Coral Block", Name: "dead_fire_coral_block", StackSize: 64} + DeadHornCoralBlock = Item{ID: 501, DisplayName: "Dead Horn Coral Block", Name: "dead_horn_coral_block", StackSize: 64} + TubeCoralBlock = Item{ID: 502, DisplayName: "Tube Coral Block", Name: "tube_coral_block", StackSize: 64} + BrainCoralBlock = Item{ID: 503, DisplayName: "Brain Coral Block", Name: "brain_coral_block", StackSize: 64} + BubbleCoralBlock = Item{ID: 504, DisplayName: "Bubble Coral Block", Name: "bubble_coral_block", StackSize: 64} + FireCoralBlock = Item{ID: 505, DisplayName: "Fire Coral Block", Name: "fire_coral_block", StackSize: 64} + HornCoralBlock = Item{ID: 506, DisplayName: "Horn Coral Block", Name: "horn_coral_block", StackSize: 64} + TubeCoral = Item{ID: 507, DisplayName: "Tube Coral", Name: "tube_coral", StackSize: 64} + BrainCoral = Item{ID: 508, DisplayName: "Brain Coral", Name: "brain_coral", StackSize: 64} + BubbleCoral = Item{ID: 509, DisplayName: "Bubble Coral", Name: "bubble_coral", StackSize: 64} + FireCoral = Item{ID: 510, DisplayName: "Fire Coral", Name: "fire_coral", StackSize: 64} + HornCoral = Item{ID: 511, DisplayName: "Horn Coral", Name: "horn_coral", StackSize: 64} + DeadBrainCoral = Item{ID: 512, DisplayName: "Dead Brain Coral", Name: "dead_brain_coral", StackSize: 64} + DeadBubbleCoral = Item{ID: 513, DisplayName: "Dead Bubble Coral", Name: "dead_bubble_coral", StackSize: 64} + DeadFireCoral = Item{ID: 514, DisplayName: "Dead Fire Coral", Name: "dead_fire_coral", StackSize: 64} + DeadHornCoral = Item{ID: 515, DisplayName: "Dead Horn Coral", Name: "dead_horn_coral", StackSize: 64} + DeadTubeCoral = Item{ID: 516, DisplayName: "Dead Tube Coral", Name: "dead_tube_coral", StackSize: 64} + TubeCoralFan = Item{ID: 517, DisplayName: "Tube Coral Fan", Name: "tube_coral_fan", StackSize: 64} + BrainCoralFan = Item{ID: 518, DisplayName: "Brain Coral Fan", Name: "brain_coral_fan", StackSize: 64} + BubbleCoralFan = Item{ID: 519, DisplayName: "Bubble Coral Fan", Name: "bubble_coral_fan", StackSize: 64} + FireCoralFan = Item{ID: 520, DisplayName: "Fire Coral Fan", Name: "fire_coral_fan", StackSize: 64} + HornCoralFan = Item{ID: 521, DisplayName: "Horn Coral Fan", Name: "horn_coral_fan", StackSize: 64} + DeadTubeCoralFan = Item{ID: 522, DisplayName: "Dead Tube Coral Fan", Name: "dead_tube_coral_fan", StackSize: 64} + DeadBrainCoralFan = Item{ID: 523, DisplayName: "Dead Brain Coral Fan", Name: "dead_brain_coral_fan", StackSize: 64} + DeadBubbleCoralFan = Item{ID: 524, DisplayName: "Dead Bubble Coral Fan", Name: "dead_bubble_coral_fan", StackSize: 64} + DeadFireCoralFan = Item{ID: 525, DisplayName: "Dead Fire Coral Fan", Name: "dead_fire_coral_fan", StackSize: 64} + DeadHornCoralFan = Item{ID: 526, DisplayName: "Dead Horn Coral Fan", Name: "dead_horn_coral_fan", StackSize: 64} + BlueIce = Item{ID: 527, DisplayName: "Blue Ice", Name: "blue_ice", StackSize: 64} + Conduit = Item{ID: 528, DisplayName: "Conduit", Name: "conduit", StackSize: 64} + PolishedGraniteStairs = Item{ID: 529, DisplayName: "Polished Granite Stairs", Name: "polished_granite_stairs", StackSize: 64} + SmoothRedSandstoneStairs = Item{ID: 530, DisplayName: "Smooth Red Sandstone Stairs", Name: "smooth_red_sandstone_stairs", StackSize: 64} + MossyStoneBrickStairs = Item{ID: 531, DisplayName: "Mossy Stone Brick Stairs", Name: "mossy_stone_brick_stairs", StackSize: 64} + PolishedDioriteStairs = Item{ID: 532, DisplayName: "Polished Diorite Stairs", Name: "polished_diorite_stairs", StackSize: 64} + MossyCobblestoneStairs = Item{ID: 533, DisplayName: "Mossy Cobblestone Stairs", Name: "mossy_cobblestone_stairs", StackSize: 64} + EndStoneBrickStairs = Item{ID: 534, DisplayName: "End Stone Brick Stairs", Name: "end_stone_brick_stairs", StackSize: 64} + StoneStairs = Item{ID: 535, DisplayName: "Stone Stairs", Name: "stone_stairs", StackSize: 64} + SmoothSandstoneStairs = Item{ID: 536, DisplayName: "Smooth Sandstone Stairs", Name: "smooth_sandstone_stairs", StackSize: 64} + SmoothQuartzStairs = Item{ID: 537, DisplayName: "Smooth Quartz Stairs", Name: "smooth_quartz_stairs", StackSize: 64} + GraniteStairs = Item{ID: 538, DisplayName: "Granite Stairs", Name: "granite_stairs", StackSize: 64} + AndesiteStairs = Item{ID: 539, DisplayName: "Andesite Stairs", Name: "andesite_stairs", StackSize: 64} + RedNetherBrickStairs = Item{ID: 540, DisplayName: "Red Nether Brick Stairs", Name: "red_nether_brick_stairs", StackSize: 64} + PolishedAndesiteStairs = Item{ID: 541, DisplayName: "Polished Andesite Stairs", Name: "polished_andesite_stairs", StackSize: 64} + DioriteStairs = Item{ID: 542, DisplayName: "Diorite Stairs", Name: "diorite_stairs", StackSize: 64} + PolishedGraniteSlab = Item{ID: 543, DisplayName: "Polished Granite Slab", Name: "polished_granite_slab", StackSize: 64} + SmoothRedSandstoneSlab = Item{ID: 544, DisplayName: "Smooth Red Sandstone Slab", Name: "smooth_red_sandstone_slab", StackSize: 64} + MossyStoneBrickSlab = Item{ID: 545, DisplayName: "Mossy Stone Brick Slab", Name: "mossy_stone_brick_slab", StackSize: 64} + PolishedDioriteSlab = Item{ID: 546, DisplayName: "Polished Diorite Slab", Name: "polished_diorite_slab", StackSize: 64} + MossyCobblestoneSlab = Item{ID: 547, DisplayName: "Mossy Cobblestone Slab", Name: "mossy_cobblestone_slab", StackSize: 64} + EndStoneBrickSlab = Item{ID: 548, DisplayName: "End Stone Brick Slab", Name: "end_stone_brick_slab", StackSize: 64} + SmoothSandstoneSlab = Item{ID: 549, DisplayName: "Smooth Sandstone Slab", Name: "smooth_sandstone_slab", StackSize: 64} + SmoothQuartzSlab = Item{ID: 550, DisplayName: "Smooth Quartz Slab", Name: "smooth_quartz_slab", StackSize: 64} + GraniteSlab = Item{ID: 551, DisplayName: "Granite Slab", Name: "granite_slab", StackSize: 64} + AndesiteSlab = Item{ID: 552, DisplayName: "Andesite Slab", Name: "andesite_slab", StackSize: 64} + RedNetherBrickSlab = Item{ID: 553, DisplayName: "Red Nether Brick Slab", Name: "red_nether_brick_slab", StackSize: 64} + PolishedAndesiteSlab = Item{ID: 554, DisplayName: "Polished Andesite Slab", Name: "polished_andesite_slab", StackSize: 64} + DioriteSlab = Item{ID: 555, DisplayName: "Diorite Slab", Name: "diorite_slab", StackSize: 64} + Scaffolding = Item{ID: 556, DisplayName: "Scaffolding", Name: "scaffolding", StackSize: 64} + IronDoor = Item{ID: 557, DisplayName: "Iron Door", Name: "iron_door", StackSize: 64} + OakDoor = Item{ID: 558, DisplayName: "Oak Door", Name: "oak_door", StackSize: 64} + SpruceDoor = Item{ID: 559, DisplayName: "Spruce Door", Name: "spruce_door", StackSize: 64} + BirchDoor = Item{ID: 560, DisplayName: "Birch Door", Name: "birch_door", StackSize: 64} + JungleDoor = Item{ID: 561, DisplayName: "Jungle Door", Name: "jungle_door", StackSize: 64} + AcaciaDoor = Item{ID: 562, DisplayName: "Acacia Door", Name: "acacia_door", StackSize: 64} + DarkOakDoor = Item{ID: 563, DisplayName: "Dark Oak Door", Name: "dark_oak_door", StackSize: 64} + CrimsonDoor = Item{ID: 564, DisplayName: "Crimson Door", Name: "crimson_door", StackSize: 64} + WarpedDoor = Item{ID: 565, DisplayName: "Warped Door", Name: "warped_door", StackSize: 64} + Repeater = Item{ID: 566, DisplayName: "Redstone Repeater", Name: "repeater", StackSize: 64} + Comparator = Item{ID: 567, DisplayName: "Redstone Comparator", Name: "comparator", StackSize: 64} + StructureBlock = Item{ID: 568, DisplayName: "Structure Block", Name: "structure_block", StackSize: 64} + Jigsaw = Item{ID: 569, DisplayName: "Jigsaw Block", Name: "jigsaw", StackSize: 64} + TurtleHelmet = Item{ID: 570, DisplayName: "Turtle Shell", Name: "turtle_helmet", StackSize: 1} + Scute = Item{ID: 571, DisplayName: "Scute", Name: "scute", StackSize: 64} + FlintAndSteel = Item{ID: 572, DisplayName: "Flint and Steel", Name: "flint_and_steel", StackSize: 1} + Apple = Item{ID: 573, DisplayName: "Apple", Name: "apple", StackSize: 64} + Bow = Item{ID: 574, DisplayName: "Bow", Name: "bow", StackSize: 1} + Arrow = Item{ID: 575, DisplayName: "Arrow", Name: "arrow", StackSize: 64} + Coal = Item{ID: 576, DisplayName: "Coal", Name: "coal", StackSize: 64} + Charcoal = Item{ID: 577, DisplayName: "Charcoal", Name: "charcoal", StackSize: 64} + Diamond = Item{ID: 578, DisplayName: "Diamond", Name: "diamond", StackSize: 64} + IronIngot = Item{ID: 579, DisplayName: "Iron Ingot", Name: "iron_ingot", StackSize: 64} + GoldIngot = Item{ID: 580, DisplayName: "Gold Ingot", Name: "gold_ingot", StackSize: 64} + NetheriteIngot = Item{ID: 581, DisplayName: "Netherite Ingot", Name: "netherite_ingot", StackSize: 64} + NetheriteScrap = Item{ID: 582, DisplayName: "Netherite Scrap", Name: "netherite_scrap", StackSize: 64} + WoodenSword = Item{ID: 583, DisplayName: "Wooden Sword", Name: "wooden_sword", StackSize: 1} + WoodenShovel = Item{ID: 584, DisplayName: "Wooden Shovel", Name: "wooden_shovel", StackSize: 1} + WoodenPickaxe = Item{ID: 585, DisplayName: "Wooden Pickaxe", Name: "wooden_pickaxe", StackSize: 1} + WoodenAxe = Item{ID: 586, DisplayName: "Wooden Axe", Name: "wooden_axe", StackSize: 1} + WoodenHoe = Item{ID: 587, DisplayName: "Wooden Hoe", Name: "wooden_hoe", StackSize: 1} + StoneSword = Item{ID: 588, DisplayName: "Stone Sword", Name: "stone_sword", StackSize: 1} + StoneShovel = Item{ID: 589, DisplayName: "Stone Shovel", Name: "stone_shovel", StackSize: 1} + StonePickaxe = Item{ID: 590, DisplayName: "Stone Pickaxe", Name: "stone_pickaxe", StackSize: 1} + StoneAxe = Item{ID: 591, DisplayName: "Stone Axe", Name: "stone_axe", StackSize: 1} + StoneHoe = Item{ID: 592, DisplayName: "Stone Hoe", Name: "stone_hoe", StackSize: 1} + GoldenSword = Item{ID: 593, DisplayName: "Golden Sword", Name: "golden_sword", StackSize: 1} + GoldenShovel = Item{ID: 594, DisplayName: "Golden Shovel", Name: "golden_shovel", StackSize: 1} + GoldenPickaxe = Item{ID: 595, DisplayName: "Golden Pickaxe", Name: "golden_pickaxe", StackSize: 1} + GoldenAxe = Item{ID: 596, DisplayName: "Golden Axe", Name: "golden_axe", StackSize: 1} + GoldenHoe = Item{ID: 597, DisplayName: "Golden Hoe", Name: "golden_hoe", StackSize: 1} + IronSword = Item{ID: 598, DisplayName: "Iron Sword", Name: "iron_sword", StackSize: 1} + IronShovel = Item{ID: 599, DisplayName: "Iron Shovel", Name: "iron_shovel", StackSize: 1} + IronPickaxe = Item{ID: 600, DisplayName: "Iron Pickaxe", Name: "iron_pickaxe", StackSize: 1} + IronAxe = Item{ID: 601, DisplayName: "Iron Axe", Name: "iron_axe", StackSize: 1} + IronHoe = Item{ID: 602, DisplayName: "Iron Hoe", Name: "iron_hoe", StackSize: 1} + DiamondSword = Item{ID: 603, DisplayName: "Diamond Sword", Name: "diamond_sword", StackSize: 1} + DiamondShovel = Item{ID: 604, DisplayName: "Diamond Shovel", Name: "diamond_shovel", StackSize: 1} + DiamondPickaxe = Item{ID: 605, DisplayName: "Diamond Pickaxe", Name: "diamond_pickaxe", StackSize: 1} + DiamondAxe = Item{ID: 606, DisplayName: "Diamond Axe", Name: "diamond_axe", StackSize: 1} + DiamondHoe = Item{ID: 607, DisplayName: "Diamond Hoe", Name: "diamond_hoe", StackSize: 1} + NetheriteSword = Item{ID: 608, DisplayName: "Netherite Sword", Name: "netherite_sword", StackSize: 1} + NetheriteShovel = Item{ID: 609, DisplayName: "Netherite Shovel", Name: "netherite_shovel", StackSize: 1} + NetheritePickaxe = Item{ID: 610, DisplayName: "Netherite Pickaxe", Name: "netherite_pickaxe", StackSize: 1} + NetheriteAxe = Item{ID: 611, DisplayName: "Netherite Axe", Name: "netherite_axe", StackSize: 1} + NetheriteHoe = Item{ID: 612, DisplayName: "Netherite Hoe", Name: "netherite_hoe", StackSize: 1} + Stick = Item{ID: 613, DisplayName: "Stick", Name: "stick", StackSize: 64} + Bowl = Item{ID: 614, DisplayName: "Bowl", Name: "bowl", StackSize: 64} + MushroomStew = Item{ID: 615, DisplayName: "Mushroom Stew", Name: "mushroom_stew", StackSize: 1} + String = Item{ID: 616, DisplayName: "String", Name: "string", StackSize: 64} + Feather = Item{ID: 617, DisplayName: "Feather", Name: "feather", StackSize: 64} + Gunpowder = Item{ID: 618, DisplayName: "Gunpowder", Name: "gunpowder", StackSize: 64} + WheatSeeds = Item{ID: 619, DisplayName: "Wheat Seeds", Name: "wheat_seeds", StackSize: 64} + Wheat = Item{ID: 620, DisplayName: "Wheat", Name: "wheat", StackSize: 64} + Bread = Item{ID: 621, DisplayName: "Bread", Name: "bread", StackSize: 64} + LeatherHelmet = Item{ID: 622, DisplayName: "Leather Cap", Name: "leather_helmet", StackSize: 1} + LeatherChestplate = Item{ID: 623, DisplayName: "Leather Tunic", Name: "leather_chestplate", StackSize: 1} + LeatherLeggings = Item{ID: 624, DisplayName: "Leather Pants", Name: "leather_leggings", StackSize: 1} + LeatherBoots = Item{ID: 625, DisplayName: "Leather Boots", Name: "leather_boots", StackSize: 1} + ChainmailHelmet = Item{ID: 626, DisplayName: "Chainmail Helmet", Name: "chainmail_helmet", StackSize: 1} + ChainmailChestplate = Item{ID: 627, DisplayName: "Chainmail Chestplate", Name: "chainmail_chestplate", StackSize: 1} + ChainmailLeggings = Item{ID: 628, DisplayName: "Chainmail Leggings", Name: "chainmail_leggings", StackSize: 1} + ChainmailBoots = Item{ID: 629, DisplayName: "Chainmail Boots", Name: "chainmail_boots", StackSize: 1} + IronHelmet = Item{ID: 630, DisplayName: "Iron Helmet", Name: "iron_helmet", StackSize: 1} + IronChestplate = Item{ID: 631, DisplayName: "Iron Chestplate", Name: "iron_chestplate", StackSize: 1} + IronLeggings = Item{ID: 632, DisplayName: "Iron Leggings", Name: "iron_leggings", StackSize: 1} + IronBoots = Item{ID: 633, DisplayName: "Iron Boots", Name: "iron_boots", StackSize: 1} + DiamondHelmet = Item{ID: 634, DisplayName: "Diamond Helmet", Name: "diamond_helmet", StackSize: 1} + DiamondChestplate = Item{ID: 635, DisplayName: "Diamond Chestplate", Name: "diamond_chestplate", StackSize: 1} + DiamondLeggings = Item{ID: 636, DisplayName: "Diamond Leggings", Name: "diamond_leggings", StackSize: 1} + DiamondBoots = Item{ID: 637, DisplayName: "Diamond Boots", Name: "diamond_boots", StackSize: 1} + GoldenHelmet = Item{ID: 638, DisplayName: "Golden Helmet", Name: "golden_helmet", StackSize: 1} + GoldenChestplate = Item{ID: 639, DisplayName: "Golden Chestplate", Name: "golden_chestplate", StackSize: 1} + GoldenLeggings = Item{ID: 640, DisplayName: "Golden Leggings", Name: "golden_leggings", StackSize: 1} + GoldenBoots = Item{ID: 641, DisplayName: "Golden Boots", Name: "golden_boots", StackSize: 1} + NetheriteHelmet = Item{ID: 642, DisplayName: "Netherite Helmet", Name: "netherite_helmet", StackSize: 1} + NetheriteChestplate = Item{ID: 643, DisplayName: "Netherite Chestplate", Name: "netherite_chestplate", StackSize: 1} + NetheriteLeggings = Item{ID: 644, DisplayName: "Netherite Leggings", Name: "netherite_leggings", StackSize: 1} + NetheriteBoots = Item{ID: 645, DisplayName: "Netherite Boots", Name: "netherite_boots", StackSize: 1} + Flint = Item{ID: 646, DisplayName: "Flint", Name: "flint", StackSize: 64} + Porkchop = Item{ID: 647, DisplayName: "Raw Porkchop", Name: "porkchop", StackSize: 64} + CookedPorkchop = Item{ID: 648, DisplayName: "Cooked Porkchop", Name: "cooked_porkchop", StackSize: 64} + Painting = Item{ID: 649, DisplayName: "Painting", Name: "painting", StackSize: 64} + GoldenApple = Item{ID: 650, DisplayName: "Golden Apple", Name: "golden_apple", StackSize: 64} + EnchantedGoldenApple = Item{ID: 651, DisplayName: "Enchanted Golden Apple", Name: "enchanted_golden_apple", StackSize: 64} + OakSign = Item{ID: 652, DisplayName: "Oak Sign", Name: "oak_sign", StackSize: 16} + SpruceSign = Item{ID: 653, DisplayName: "Spruce Sign", Name: "spruce_sign", StackSize: 16} + BirchSign = Item{ID: 654, DisplayName: "Birch Sign", Name: "birch_sign", StackSize: 16} + JungleSign = Item{ID: 655, DisplayName: "Jungle Sign", Name: "jungle_sign", StackSize: 16} + AcaciaSign = Item{ID: 656, DisplayName: "Acacia Sign", Name: "acacia_sign", StackSize: 16} + DarkOakSign = Item{ID: 657, DisplayName: "Dark Oak Sign", Name: "dark_oak_sign", StackSize: 16} + CrimsonSign = Item{ID: 658, DisplayName: "Crimson Sign", Name: "crimson_sign", StackSize: 16} + WarpedSign = Item{ID: 659, DisplayName: "Warped Sign", Name: "warped_sign", StackSize: 16} + Bucket = Item{ID: 660, DisplayName: "Bucket", Name: "bucket", StackSize: 16} + WaterBucket = Item{ID: 661, DisplayName: "Water Bucket", Name: "water_bucket", StackSize: 1} + LavaBucket = Item{ID: 662, DisplayName: "Lava Bucket", Name: "lava_bucket", StackSize: 1} + Minecart = Item{ID: 663, DisplayName: "Minecart", Name: "minecart", StackSize: 1} + Saddle = Item{ID: 664, DisplayName: "Saddle", Name: "saddle", StackSize: 1} + Redstone = Item{ID: 665, DisplayName: "Redstone Dust", Name: "redstone", StackSize: 64} + Snowball = Item{ID: 666, DisplayName: "Snowball", Name: "snowball", StackSize: 16} + OakBoat = Item{ID: 667, DisplayName: "Oak Boat", Name: "oak_boat", StackSize: 1} + Leather = Item{ID: 668, DisplayName: "Leather", Name: "leather", StackSize: 64} + MilkBucket = Item{ID: 669, DisplayName: "Milk Bucket", Name: "milk_bucket", StackSize: 1} + PufferfishBucket = Item{ID: 670, DisplayName: "Bucket of Pufferfish", Name: "pufferfish_bucket", StackSize: 1} + SalmonBucket = Item{ID: 671, DisplayName: "Bucket of Salmon", Name: "salmon_bucket", StackSize: 1} + CodBucket = Item{ID: 672, DisplayName: "Bucket of Cod", Name: "cod_bucket", StackSize: 1} + TropicalFishBucket = Item{ID: 673, DisplayName: "Bucket of Tropical Fish", Name: "tropical_fish_bucket", StackSize: 1} + Brick = Item{ID: 674, DisplayName: "Brick", Name: "brick", StackSize: 64} + ClayBall = Item{ID: 675, DisplayName: "Clay Ball", Name: "clay_ball", StackSize: 64} + DriedKelpBlock = Item{ID: 676, DisplayName: "Dried Kelp Block", Name: "dried_kelp_block", StackSize: 64} + Paper = Item{ID: 677, DisplayName: "Paper", Name: "paper", StackSize: 64} + Book = Item{ID: 678, DisplayName: "Book", Name: "book", StackSize: 64} + SlimeBall = Item{ID: 679, DisplayName: "Slimeball", Name: "slime_ball", StackSize: 64} + ChestMinecart = Item{ID: 680, DisplayName: "Minecart with Chest", Name: "chest_minecart", StackSize: 1} + FurnaceMinecart = Item{ID: 681, DisplayName: "Minecart with Furnace", Name: "furnace_minecart", StackSize: 1} + Egg = Item{ID: 682, DisplayName: "Egg", Name: "egg", StackSize: 16} + Compass = Item{ID: 683, DisplayName: "Compass", Name: "compass", StackSize: 64} + FishingRod = Item{ID: 684, DisplayName: "Fishing Rod", Name: "fishing_rod", StackSize: 1} + Clock = Item{ID: 685, DisplayName: "Clock", Name: "clock", StackSize: 64} + GlowstoneDust = Item{ID: 686, DisplayName: "Glowstone Dust", Name: "glowstone_dust", StackSize: 64} + Cod = Item{ID: 687, DisplayName: "Raw Cod", Name: "cod", StackSize: 64} + Salmon = Item{ID: 688, DisplayName: "Raw Salmon", Name: "salmon", StackSize: 64} + TropicalFish = Item{ID: 689, DisplayName: "Tropical Fish", Name: "tropical_fish", StackSize: 64} + Pufferfish = Item{ID: 690, DisplayName: "Pufferfish", Name: "pufferfish", StackSize: 64} + CookedCod = Item{ID: 691, DisplayName: "Cooked Cod", Name: "cooked_cod", StackSize: 64} + CookedSalmon = Item{ID: 692, DisplayName: "Cooked Salmon", Name: "cooked_salmon", StackSize: 64} + InkSac = Item{ID: 693, DisplayName: "Ink Sac", Name: "ink_sac", StackSize: 64} + CocoaBeans = Item{ID: 694, DisplayName: "Cocoa Beans", Name: "cocoa_beans", StackSize: 64} + LapisLazuli = Item{ID: 695, DisplayName: "Lapis Lazuli", Name: "lapis_lazuli", StackSize: 64} + WhiteDye = Item{ID: 696, DisplayName: "White Dye", Name: "white_dye", StackSize: 64} + OrangeDye = Item{ID: 697, DisplayName: "Orange Dye", Name: "orange_dye", StackSize: 64} + MagentaDye = Item{ID: 698, DisplayName: "Magenta Dye", Name: "magenta_dye", StackSize: 64} + LightBlueDye = Item{ID: 699, DisplayName: "Light Blue Dye", Name: "light_blue_dye", StackSize: 64} + YellowDye = Item{ID: 700, DisplayName: "Yellow Dye", Name: "yellow_dye", StackSize: 64} + LimeDye = Item{ID: 701, DisplayName: "Lime Dye", Name: "lime_dye", StackSize: 64} + PinkDye = Item{ID: 702, DisplayName: "Pink Dye", Name: "pink_dye", StackSize: 64} + GrayDye = Item{ID: 703, DisplayName: "Gray Dye", Name: "gray_dye", StackSize: 64} + LightGrayDye = Item{ID: 704, DisplayName: "Light Gray Dye", Name: "light_gray_dye", StackSize: 64} + CyanDye = Item{ID: 705, DisplayName: "Cyan Dye", Name: "cyan_dye", StackSize: 64} + PurpleDye = Item{ID: 706, DisplayName: "Purple Dye", Name: "purple_dye", StackSize: 64} + BlueDye = Item{ID: 707, DisplayName: "Blue Dye", Name: "blue_dye", StackSize: 64} + BrownDye = Item{ID: 708, DisplayName: "Brown Dye", Name: "brown_dye", StackSize: 64} + GreenDye = Item{ID: 709, DisplayName: "Green Dye", Name: "green_dye", StackSize: 64} + RedDye = Item{ID: 710, DisplayName: "Red Dye", Name: "red_dye", StackSize: 64} + BlackDye = Item{ID: 711, DisplayName: "Black Dye", Name: "black_dye", StackSize: 64} + BoneMeal = Item{ID: 712, DisplayName: "Bone Meal", Name: "bone_meal", StackSize: 64} + Bone = Item{ID: 713, DisplayName: "Bone", Name: "bone", StackSize: 64} + Sugar = Item{ID: 714, DisplayName: "Sugar", Name: "sugar", StackSize: 64} + Cake = Item{ID: 715, DisplayName: "Cake", Name: "cake", StackSize: 1} + WhiteBed = Item{ID: 716, DisplayName: "White Bed", Name: "white_bed", StackSize: 1} + OrangeBed = Item{ID: 717, DisplayName: "Orange Bed", Name: "orange_bed", StackSize: 1} + MagentaBed = Item{ID: 718, DisplayName: "Magenta Bed", Name: "magenta_bed", StackSize: 1} + LightBlueBed = Item{ID: 719, DisplayName: "Light Blue Bed", Name: "light_blue_bed", StackSize: 1} + YellowBed = Item{ID: 720, DisplayName: "Yellow Bed", Name: "yellow_bed", StackSize: 1} + LimeBed = Item{ID: 721, DisplayName: "Lime Bed", Name: "lime_bed", StackSize: 1} + PinkBed = Item{ID: 722, DisplayName: "Pink Bed", Name: "pink_bed", StackSize: 1} + GrayBed = Item{ID: 723, DisplayName: "Gray Bed", Name: "gray_bed", StackSize: 1} + LightGrayBed = Item{ID: 724, DisplayName: "Light Gray Bed", Name: "light_gray_bed", StackSize: 1} + CyanBed = Item{ID: 725, DisplayName: "Cyan Bed", Name: "cyan_bed", StackSize: 1} + PurpleBed = Item{ID: 726, DisplayName: "Purple Bed", Name: "purple_bed", StackSize: 1} + BlueBed = Item{ID: 727, DisplayName: "Blue Bed", Name: "blue_bed", StackSize: 1} + BrownBed = Item{ID: 728, DisplayName: "Brown Bed", Name: "brown_bed", StackSize: 1} + GreenBed = Item{ID: 729, DisplayName: "Green Bed", Name: "green_bed", StackSize: 1} + RedBed = Item{ID: 730, DisplayName: "Red Bed", Name: "red_bed", StackSize: 1} + BlackBed = Item{ID: 731, DisplayName: "Black Bed", Name: "black_bed", StackSize: 1} + Cookie = Item{ID: 732, DisplayName: "Cookie", Name: "cookie", StackSize: 64} + FilledMap = Item{ID: 733, DisplayName: "Map", Name: "filled_map", StackSize: 64} + Shears = Item{ID: 734, DisplayName: "Shears", Name: "shears", StackSize: 1} + MelonSlice = Item{ID: 735, DisplayName: "Melon Slice", Name: "melon_slice", StackSize: 64} + DriedKelp = Item{ID: 736, DisplayName: "Dried Kelp", Name: "dried_kelp", StackSize: 64} + PumpkinSeeds = Item{ID: 737, DisplayName: "Pumpkin Seeds", Name: "pumpkin_seeds", StackSize: 64} + MelonSeeds = Item{ID: 738, DisplayName: "Melon Seeds", Name: "melon_seeds", StackSize: 64} + Beef = Item{ID: 739, DisplayName: "Raw Beef", Name: "beef", StackSize: 64} + CookedBeef = Item{ID: 740, DisplayName: "Steak", Name: "cooked_beef", StackSize: 64} + Chicken = Item{ID: 741, DisplayName: "Raw Chicken", Name: "chicken", StackSize: 64} + CookedChicken = Item{ID: 742, DisplayName: "Cooked Chicken", Name: "cooked_chicken", StackSize: 64} + RottenFlesh = Item{ID: 743, DisplayName: "Rotten Flesh", Name: "rotten_flesh", StackSize: 64} + EnderPearl = Item{ID: 744, DisplayName: "Ender Pearl", Name: "ender_pearl", StackSize: 16} + BlazeRod = Item{ID: 745, DisplayName: "Blaze Rod", Name: "blaze_rod", StackSize: 64} + GhastTear = Item{ID: 746, DisplayName: "Ghast Tear", Name: "ghast_tear", StackSize: 64} + GoldNugget = Item{ID: 747, DisplayName: "Gold Nugget", Name: "gold_nugget", StackSize: 64} + NetherWart = Item{ID: 748, DisplayName: "Nether Wart", Name: "nether_wart", StackSize: 64} + Potion = Item{ID: 749, DisplayName: "Potion", Name: "potion", StackSize: 1} + GlassBottle = Item{ID: 750, DisplayName: "Glass Bottle", Name: "glass_bottle", StackSize: 64} + SpiderEye = Item{ID: 751, DisplayName: "Spider Eye", Name: "spider_eye", StackSize: 64} + FermentedSpiderEye = Item{ID: 752, DisplayName: "Fermented Spider Eye", Name: "fermented_spider_eye", StackSize: 64} + BlazePowder = Item{ID: 753, DisplayName: "Blaze Powder", Name: "blaze_powder", StackSize: 64} + MagmaCream = Item{ID: 754, DisplayName: "Magma Cream", Name: "magma_cream", StackSize: 64} + BrewingStand = Item{ID: 755, DisplayName: "Brewing Stand", Name: "brewing_stand", StackSize: 64} + Cauldron = Item{ID: 756, DisplayName: "Cauldron", Name: "cauldron", StackSize: 64} + EnderEye = Item{ID: 757, DisplayName: "Eye of Ender", Name: "ender_eye", StackSize: 64} + GlisteringMelonSlice = Item{ID: 758, DisplayName: "Glistering Melon Slice", Name: "glistering_melon_slice", StackSize: 64} + BatSpawnEgg = Item{ID: 759, DisplayName: "Bat Spawn Egg", Name: "bat_spawn_egg", StackSize: 64} + BeeSpawnEgg = Item{ID: 760, DisplayName: "Bee Spawn Egg", Name: "bee_spawn_egg", StackSize: 64} + BlazeSpawnEgg = Item{ID: 761, DisplayName: "Blaze Spawn Egg", Name: "blaze_spawn_egg", StackSize: 64} + CatSpawnEgg = Item{ID: 762, DisplayName: "Cat Spawn Egg", Name: "cat_spawn_egg", StackSize: 64} + CaveSpiderSpawnEgg = Item{ID: 763, DisplayName: "Cave Spider Spawn Egg", Name: "cave_spider_spawn_egg", StackSize: 64} + ChickenSpawnEgg = Item{ID: 764, DisplayName: "Chicken Spawn Egg", Name: "chicken_spawn_egg", StackSize: 64} + CodSpawnEgg = Item{ID: 765, DisplayName: "Cod Spawn Egg", Name: "cod_spawn_egg", StackSize: 64} + CowSpawnEgg = Item{ID: 766, DisplayName: "Cow Spawn Egg", Name: "cow_spawn_egg", StackSize: 64} + CreeperSpawnEgg = Item{ID: 767, DisplayName: "Creeper Spawn Egg", Name: "creeper_spawn_egg", StackSize: 64} + DolphinSpawnEgg = Item{ID: 768, DisplayName: "Dolphin Spawn Egg", Name: "dolphin_spawn_egg", StackSize: 64} + DonkeySpawnEgg = Item{ID: 769, DisplayName: "Donkey Spawn Egg", Name: "donkey_spawn_egg", StackSize: 64} + DrownedSpawnEgg = Item{ID: 770, DisplayName: "Drowned Spawn Egg", Name: "drowned_spawn_egg", StackSize: 64} + ElderGuardianSpawnEgg = Item{ID: 771, DisplayName: "Elder Guardian Spawn Egg", Name: "elder_guardian_spawn_egg", StackSize: 64} + EndermanSpawnEgg = Item{ID: 772, DisplayName: "Enderman Spawn Egg", Name: "enderman_spawn_egg", StackSize: 64} + EndermiteSpawnEgg = Item{ID: 773, DisplayName: "Endermite Spawn Egg", Name: "endermite_spawn_egg", StackSize: 64} + EvokerSpawnEgg = Item{ID: 774, DisplayName: "Evoker Spawn Egg", Name: "evoker_spawn_egg", StackSize: 64} + FoxSpawnEgg = Item{ID: 775, DisplayName: "Fox Spawn Egg", Name: "fox_spawn_egg", StackSize: 64} + GhastSpawnEgg = Item{ID: 776, DisplayName: "Ghast Spawn Egg", Name: "ghast_spawn_egg", StackSize: 64} + GuardianSpawnEgg = Item{ID: 777, DisplayName: "Guardian Spawn Egg", Name: "guardian_spawn_egg", StackSize: 64} + HoglinSpawnEgg = Item{ID: 778, DisplayName: "Hoglin Spawn Egg", Name: "hoglin_spawn_egg", StackSize: 64} + HorseSpawnEgg = Item{ID: 779, DisplayName: "Horse Spawn Egg", Name: "horse_spawn_egg", StackSize: 64} + HuskSpawnEgg = Item{ID: 780, DisplayName: "Husk Spawn Egg", Name: "husk_spawn_egg", StackSize: 64} + LlamaSpawnEgg = Item{ID: 781, DisplayName: "Llama Spawn Egg", Name: "llama_spawn_egg", StackSize: 64} + MagmaCubeSpawnEgg = Item{ID: 782, DisplayName: "Magma Cube Spawn Egg", Name: "magma_cube_spawn_egg", StackSize: 64} + MooshroomSpawnEgg = Item{ID: 783, DisplayName: "Mooshroom Spawn Egg", Name: "mooshroom_spawn_egg", StackSize: 64} + MuleSpawnEgg = Item{ID: 784, DisplayName: "Mule Spawn Egg", Name: "mule_spawn_egg", StackSize: 64} + OcelotSpawnEgg = Item{ID: 785, DisplayName: "Ocelot Spawn Egg", Name: "ocelot_spawn_egg", StackSize: 64} + PandaSpawnEgg = Item{ID: 786, DisplayName: "Panda Spawn Egg", Name: "panda_spawn_egg", StackSize: 64} + ParrotSpawnEgg = Item{ID: 787, DisplayName: "Parrot Spawn Egg", Name: "parrot_spawn_egg", StackSize: 64} + PhantomSpawnEgg = Item{ID: 788, DisplayName: "Phantom Spawn Egg", Name: "phantom_spawn_egg", StackSize: 64} + PigSpawnEgg = Item{ID: 789, DisplayName: "Pig Spawn Egg", Name: "pig_spawn_egg", StackSize: 64} + PiglinSpawnEgg = Item{ID: 790, DisplayName: "Piglin Spawn Egg", Name: "piglin_spawn_egg", StackSize: 64} + PiglinBruteSpawnEgg = Item{ID: 791, DisplayName: "Piglin Brute Spawn Egg", Name: "piglin_brute_spawn_egg", StackSize: 64} + PillagerSpawnEgg = Item{ID: 792, DisplayName: "Pillager Spawn Egg", Name: "pillager_spawn_egg", StackSize: 64} + PolarBearSpawnEgg = Item{ID: 793, DisplayName: "Polar Bear Spawn Egg", Name: "polar_bear_spawn_egg", StackSize: 64} + PufferfishSpawnEgg = Item{ID: 794, DisplayName: "Pufferfish Spawn Egg", Name: "pufferfish_spawn_egg", StackSize: 64} + RabbitSpawnEgg = Item{ID: 795, DisplayName: "Rabbit Spawn Egg", Name: "rabbit_spawn_egg", StackSize: 64} + RavagerSpawnEgg = Item{ID: 796, DisplayName: "Ravager Spawn Egg", Name: "ravager_spawn_egg", StackSize: 64} + SalmonSpawnEgg = Item{ID: 797, DisplayName: "Salmon Spawn Egg", Name: "salmon_spawn_egg", StackSize: 64} + SheepSpawnEgg = Item{ID: 798, DisplayName: "Sheep Spawn Egg", Name: "sheep_spawn_egg", StackSize: 64} + ShulkerSpawnEgg = Item{ID: 799, DisplayName: "Shulker Spawn Egg", Name: "shulker_spawn_egg", StackSize: 64} + SilverfishSpawnEgg = Item{ID: 800, DisplayName: "Silverfish Spawn Egg", Name: "silverfish_spawn_egg", StackSize: 64} + SkeletonSpawnEgg = Item{ID: 801, DisplayName: "Skeleton Spawn Egg", Name: "skeleton_spawn_egg", StackSize: 64} + SkeletonHorseSpawnEgg = Item{ID: 802, DisplayName: "Skeleton Horse Spawn Egg", Name: "skeleton_horse_spawn_egg", StackSize: 64} + SlimeSpawnEgg = Item{ID: 803, DisplayName: "Slime Spawn Egg", Name: "slime_spawn_egg", StackSize: 64} + SpiderSpawnEgg = Item{ID: 804, DisplayName: "Spider Spawn Egg", Name: "spider_spawn_egg", StackSize: 64} + SquidSpawnEgg = Item{ID: 805, DisplayName: "Squid Spawn Egg", Name: "squid_spawn_egg", StackSize: 64} + StraySpawnEgg = Item{ID: 806, DisplayName: "Stray Spawn Egg", Name: "stray_spawn_egg", StackSize: 64} + StriderSpawnEgg = Item{ID: 807, DisplayName: "Strider Spawn Egg", Name: "strider_spawn_egg", StackSize: 64} + TraderLlamaSpawnEgg = Item{ID: 808, DisplayName: "Trader Llama Spawn Egg", Name: "trader_llama_spawn_egg", StackSize: 64} + TropicalFishSpawnEgg = Item{ID: 809, DisplayName: "Tropical Fish Spawn Egg", Name: "tropical_fish_spawn_egg", StackSize: 64} + TurtleSpawnEgg = Item{ID: 810, DisplayName: "Turtle Spawn Egg", Name: "turtle_spawn_egg", StackSize: 64} + VexSpawnEgg = Item{ID: 811, DisplayName: "Vex Spawn Egg", Name: "vex_spawn_egg", StackSize: 64} + VillagerSpawnEgg = Item{ID: 812, DisplayName: "Villager Spawn Egg", Name: "villager_spawn_egg", StackSize: 64} + VindicatorSpawnEgg = Item{ID: 813, DisplayName: "Vindicator Spawn Egg", Name: "vindicator_spawn_egg", StackSize: 64} + WanderingTraderSpawnEgg = Item{ID: 814, DisplayName: "Wandering Trader Spawn Egg", Name: "wandering_trader_spawn_egg", StackSize: 64} + WitchSpawnEgg = Item{ID: 815, DisplayName: "Witch Spawn Egg", Name: "witch_spawn_egg", StackSize: 64} + WitherSkeletonSpawnEgg = Item{ID: 816, DisplayName: "Wither Skeleton Spawn Egg", Name: "wither_skeleton_spawn_egg", StackSize: 64} + WolfSpawnEgg = Item{ID: 817, DisplayName: "Wolf Spawn Egg", Name: "wolf_spawn_egg", StackSize: 64} + ZoglinSpawnEgg = Item{ID: 818, DisplayName: "Zoglin Spawn Egg", Name: "zoglin_spawn_egg", StackSize: 64} + ZombieSpawnEgg = Item{ID: 819, DisplayName: "Zombie Spawn Egg", Name: "zombie_spawn_egg", StackSize: 64} + ZombieHorseSpawnEgg = Item{ID: 820, DisplayName: "Zombie Horse Spawn Egg", Name: "zombie_horse_spawn_egg", StackSize: 64} + ZombieVillagerSpawnEgg = Item{ID: 821, DisplayName: "Zombie Villager Spawn Egg", Name: "zombie_villager_spawn_egg", StackSize: 64} + ZombifiedPiglinSpawnEgg = Item{ID: 822, DisplayName: "Zombified Piglin Spawn Egg", Name: "zombified_piglin_spawn_egg", StackSize: 64} + ExperienceBottle = Item{ID: 823, DisplayName: "Bottle o' Enchanting", Name: "experience_bottle", StackSize: 64} + FireCharge = Item{ID: 824, DisplayName: "Fire Charge", Name: "fire_charge", StackSize: 64} + WritableBook = Item{ID: 825, DisplayName: "Book and Quill", Name: "writable_book", StackSize: 1} + WrittenBook = Item{ID: 826, DisplayName: "Written Book", Name: "written_book", StackSize: 16} + Emerald = Item{ID: 827, DisplayName: "Emerald", Name: "emerald", StackSize: 64} + ItemFrame = Item{ID: 828, DisplayName: "Item Frame", Name: "item_frame", StackSize: 64} + FlowerPot = Item{ID: 829, DisplayName: "Flower Pot", Name: "flower_pot", StackSize: 64} + Carrot = Item{ID: 830, DisplayName: "Carrot", Name: "carrot", StackSize: 64} + Potato = Item{ID: 831, DisplayName: "Potato", Name: "potato", StackSize: 64} + BakedPotato = Item{ID: 832, DisplayName: "Baked Potato", Name: "baked_potato", StackSize: 64} + PoisonousPotato = Item{ID: 833, DisplayName: "Poisonous Potato", Name: "poisonous_potato", StackSize: 64} + Map = Item{ID: 834, DisplayName: "Empty Map", Name: "map", StackSize: 64} + GoldenCarrot = Item{ID: 835, DisplayName: "Golden Carrot", Name: "golden_carrot", StackSize: 64} + SkeletonSkull = Item{ID: 836, DisplayName: "Skeleton Skull", Name: "skeleton_skull", StackSize: 64} + WitherSkeletonSkull = Item{ID: 837, DisplayName: "Wither Skeleton Skull", Name: "wither_skeleton_skull", StackSize: 64} + PlayerHead = Item{ID: 838, DisplayName: "Player Head", Name: "player_head", StackSize: 64} + ZombieHead = Item{ID: 839, DisplayName: "Zombie Head", Name: "zombie_head", StackSize: 64} + CreeperHead = Item{ID: 840, DisplayName: "Creeper Head", Name: "creeper_head", StackSize: 64} + DragonHead = Item{ID: 841, DisplayName: "Dragon Head", Name: "dragon_head", StackSize: 64} + CarrotOnAStick = Item{ID: 842, DisplayName: "Carrot on a Stick", Name: "carrot_on_a_stick", StackSize: 1} + WarpedFungusOnAStick = Item{ID: 843, DisplayName: "Warped Fungus on a Stick", Name: "warped_fungus_on_a_stick", StackSize: 64} + NetherStar = Item{ID: 844, DisplayName: "Nether Star", Name: "nether_star", StackSize: 64} + PumpkinPie = Item{ID: 845, DisplayName: "Pumpkin Pie", Name: "pumpkin_pie", StackSize: 64} + FireworkRocket = Item{ID: 846, DisplayName: "Firework Rocket", Name: "firework_rocket", StackSize: 64} + FireworkStar = Item{ID: 847, DisplayName: "Firework Star", Name: "firework_star", StackSize: 64} + EnchantedBook = Item{ID: 848, DisplayName: "Enchanted Book", Name: "enchanted_book", StackSize: 1} + NetherBrick = Item{ID: 849, DisplayName: "Nether Brick", Name: "nether_brick", StackSize: 64} + Quartz = Item{ID: 850, DisplayName: "Nether Quartz", Name: "quartz", StackSize: 64} + TntMinecart = Item{ID: 851, DisplayName: "Minecart with TNT", Name: "tnt_minecart", StackSize: 1} + HopperMinecart = Item{ID: 852, DisplayName: "Minecart with Hopper", Name: "hopper_minecart", StackSize: 1} + PrismarineShard = Item{ID: 853, DisplayName: "Prismarine Shard", Name: "prismarine_shard", StackSize: 64} + PrismarineCrystals = Item{ID: 854, DisplayName: "Prismarine Crystals", Name: "prismarine_crystals", StackSize: 64} + Rabbit = Item{ID: 855, DisplayName: "Raw Rabbit", Name: "rabbit", StackSize: 64} + CookedRabbit = Item{ID: 856, DisplayName: "Cooked Rabbit", Name: "cooked_rabbit", StackSize: 64} + RabbitStew = Item{ID: 857, DisplayName: "Rabbit Stew", Name: "rabbit_stew", StackSize: 1} + RabbitFoot = Item{ID: 858, DisplayName: "Rabbit's Foot", Name: "rabbit_foot", StackSize: 64} + RabbitHide = Item{ID: 859, DisplayName: "Rabbit Hide", Name: "rabbit_hide", StackSize: 64} + ArmorStand = Item{ID: 860, DisplayName: "Armor Stand", Name: "armor_stand", StackSize: 16} + IronHorseArmor = Item{ID: 861, DisplayName: "Iron Horse Armor", Name: "iron_horse_armor", StackSize: 1} + GoldenHorseArmor = Item{ID: 862, DisplayName: "Golden Horse Armor", Name: "golden_horse_armor", StackSize: 1} + DiamondHorseArmor = Item{ID: 863, DisplayName: "Diamond Horse Armor", Name: "diamond_horse_armor", StackSize: 1} + LeatherHorseArmor = Item{ID: 864, DisplayName: "Leather Horse Armor", Name: "leather_horse_armor", StackSize: 1} + Lead = Item{ID: 865, DisplayName: "Lead", Name: "lead", StackSize: 64} + NameTag = Item{ID: 866, DisplayName: "Name Tag", Name: "name_tag", StackSize: 64} + CommandBlockMinecart = Item{ID: 867, DisplayName: "Minecart with Command Block", Name: "command_block_minecart", StackSize: 1} + Mutton = Item{ID: 868, DisplayName: "Raw Mutton", Name: "mutton", StackSize: 64} + CookedMutton = Item{ID: 869, DisplayName: "Cooked Mutton", Name: "cooked_mutton", StackSize: 64} + WhiteBanner = Item{ID: 870, DisplayName: "White Banner", Name: "white_banner", StackSize: 16} + OrangeBanner = Item{ID: 871, DisplayName: "Orange Banner", Name: "orange_banner", StackSize: 16} + MagentaBanner = Item{ID: 872, DisplayName: "Magenta Banner", Name: "magenta_banner", StackSize: 16} + LightBlueBanner = Item{ID: 873, DisplayName: "Light Blue Banner", Name: "light_blue_banner", StackSize: 16} + YellowBanner = Item{ID: 874, DisplayName: "Yellow Banner", Name: "yellow_banner", StackSize: 16} + LimeBanner = Item{ID: 875, DisplayName: "Lime Banner", Name: "lime_banner", StackSize: 16} + PinkBanner = Item{ID: 876, DisplayName: "Pink Banner", Name: "pink_banner", StackSize: 16} + GrayBanner = Item{ID: 877, DisplayName: "Gray Banner", Name: "gray_banner", StackSize: 16} + LightGrayBanner = Item{ID: 878, DisplayName: "Light Gray Banner", Name: "light_gray_banner", StackSize: 16} + CyanBanner = Item{ID: 879, DisplayName: "Cyan Banner", Name: "cyan_banner", StackSize: 16} + PurpleBanner = Item{ID: 880, DisplayName: "Purple Banner", Name: "purple_banner", StackSize: 16} + BlueBanner = Item{ID: 881, DisplayName: "Blue Banner", Name: "blue_banner", StackSize: 16} + BrownBanner = Item{ID: 882, DisplayName: "Brown Banner", Name: "brown_banner", StackSize: 16} + GreenBanner = Item{ID: 883, DisplayName: "Green Banner", Name: "green_banner", StackSize: 16} + RedBanner = Item{ID: 884, DisplayName: "Red Banner", Name: "red_banner", StackSize: 16} + BlackBanner = Item{ID: 885, DisplayName: "Black Banner", Name: "black_banner", StackSize: 16} + EndCrystal = Item{ID: 886, DisplayName: "End Crystal", Name: "end_crystal", StackSize: 64} + ChorusFruit = Item{ID: 887, DisplayName: "Chorus Fruit", Name: "chorus_fruit", StackSize: 64} + PoppedChorusFruit = Item{ID: 888, DisplayName: "Popped Chorus Fruit", Name: "popped_chorus_fruit", StackSize: 64} + Beetroot = Item{ID: 889, DisplayName: "Beetroot", Name: "beetroot", StackSize: 64} + BeetrootSeeds = Item{ID: 890, DisplayName: "Beetroot Seeds", Name: "beetroot_seeds", StackSize: 64} + BeetrootSoup = Item{ID: 891, DisplayName: "Beetroot Soup", Name: "beetroot_soup", StackSize: 1} + DragonBreath = Item{ID: 892, DisplayName: "Dragon's Breath", Name: "dragon_breath", StackSize: 64} + SplashPotion = Item{ID: 893, DisplayName: "Splash Potion", Name: "splash_potion", StackSize: 1} + SpectralArrow = Item{ID: 894, DisplayName: "Spectral Arrow", Name: "spectral_arrow", StackSize: 64} + TippedArrow = Item{ID: 895, DisplayName: "Tipped Arrow", Name: "tipped_arrow", StackSize: 64} + LingeringPotion = Item{ID: 896, DisplayName: "Lingering Potion", Name: "lingering_potion", StackSize: 1} + Shield = Item{ID: 897, DisplayName: "Shield", Name: "shield", StackSize: 1} + Elytra = Item{ID: 898, DisplayName: "Elytra", Name: "elytra", StackSize: 1} + SpruceBoat = Item{ID: 899, DisplayName: "Spruce Boat", Name: "spruce_boat", StackSize: 1} + BirchBoat = Item{ID: 900, DisplayName: "Birch Boat", Name: "birch_boat", StackSize: 1} + JungleBoat = Item{ID: 901, DisplayName: "Jungle Boat", Name: "jungle_boat", StackSize: 1} + AcaciaBoat = Item{ID: 902, DisplayName: "Acacia Boat", Name: "acacia_boat", StackSize: 1} + DarkOakBoat = Item{ID: 903, DisplayName: "Dark Oak Boat", Name: "dark_oak_boat", StackSize: 1} + TotemOfUndying = Item{ID: 904, DisplayName: "Totem of Undying", Name: "totem_of_undying", StackSize: 1} + ShulkerShell = Item{ID: 905, DisplayName: "Shulker Shell", Name: "shulker_shell", StackSize: 64} + IronNugget = Item{ID: 906, DisplayName: "Iron Nugget", Name: "iron_nugget", StackSize: 64} + KnowledgeBook = Item{ID: 907, DisplayName: "Knowledge Book", Name: "knowledge_book", StackSize: 1} + DebugStick = Item{ID: 908, DisplayName: "Debug Stick", Name: "debug_stick", StackSize: 1} + MusicDisc13 = Item{ID: 909, DisplayName: "13 Disc", Name: "music_disc_13", StackSize: 1} + MusicDiscCat = Item{ID: 910, DisplayName: "Cat Disc", Name: "music_disc_cat", StackSize: 1} + MusicDiscBlocks = Item{ID: 911, DisplayName: "Blocks Disc", Name: "music_disc_blocks", StackSize: 1} + MusicDiscChirp = Item{ID: 912, DisplayName: "Chirp Disc", Name: "music_disc_chirp", StackSize: 1} + MusicDiscFar = Item{ID: 913, DisplayName: "Far Disc", Name: "music_disc_far", StackSize: 1} + MusicDiscMall = Item{ID: 914, DisplayName: "Mall Disc", Name: "music_disc_mall", StackSize: 1} + MusicDiscMellohi = Item{ID: 915, DisplayName: "Mellohi Disc", Name: "music_disc_mellohi", StackSize: 1} + MusicDiscStal = Item{ID: 916, DisplayName: "Stal Disc", Name: "music_disc_stal", StackSize: 1} + MusicDiscStrad = Item{ID: 917, DisplayName: "Strad Disc", Name: "music_disc_strad", StackSize: 1} + MusicDiscWard = Item{ID: 918, DisplayName: "Ward Disc", Name: "music_disc_ward", StackSize: 1} + MusicDisc11 = Item{ID: 919, DisplayName: "11 Disc", Name: "music_disc_11", StackSize: 1} + MusicDiscWait = Item{ID: 920, DisplayName: "Wait Disc", Name: "music_disc_wait", StackSize: 1} + MusicDiscPigstep = Item{ID: 921, DisplayName: "Music Disc", Name: "music_disc_pigstep", StackSize: 1} + Trident = Item{ID: 922, DisplayName: "Trident", Name: "trident", StackSize: 1} + PhantomMembrane = Item{ID: 923, DisplayName: "Phantom Membrane", Name: "phantom_membrane", StackSize: 64} + NautilusShell = Item{ID: 924, DisplayName: "Nautilus Shell", Name: "nautilus_shell", StackSize: 64} + HeartOfTheSea = Item{ID: 925, DisplayName: "Heart of the Sea", Name: "heart_of_the_sea", StackSize: 64} + Crossbow = Item{ID: 926, DisplayName: "Crossbow", Name: "crossbow", StackSize: 1} + SuspiciousStew = Item{ID: 927, DisplayName: "Suspicious Stew", Name: "suspicious_stew", StackSize: 1} + Loom = Item{ID: 928, DisplayName: "Loom", Name: "loom", StackSize: 64} + FlowerBannerPattern = Item{ID: 929, DisplayName: "Banner Pattern", Name: "flower_banner_pattern", StackSize: 1} + CreeperBannerPattern = Item{ID: 930, DisplayName: "Banner Pattern", Name: "creeper_banner_pattern", StackSize: 1} + SkullBannerPattern = Item{ID: 931, DisplayName: "Banner Pattern", Name: "skull_banner_pattern", StackSize: 1} + MojangBannerPattern = Item{ID: 932, DisplayName: "Banner Pattern", Name: "mojang_banner_pattern", StackSize: 1} + GlobeBannerPattern = Item{ID: 933, DisplayName: "Banner Pattern", Name: "globe_banner_pattern", StackSize: 1} + PiglinBannerPattern = Item{ID: 934, DisplayName: "Banner Pattern", Name: "piglin_banner_pattern", StackSize: 1} + Composter = Item{ID: 935, DisplayName: "Composter", Name: "composter", StackSize: 64} + Barrel = Item{ID: 936, DisplayName: "Barrel", Name: "barrel", StackSize: 64} + Smoker = Item{ID: 937, DisplayName: "Smoker", Name: "smoker", StackSize: 64} + BlastFurnace = Item{ID: 938, DisplayName: "Blast Furnace", Name: "blast_furnace", StackSize: 64} + CartographyTable = Item{ID: 939, DisplayName: "Cartography Table", Name: "cartography_table", StackSize: 64} + FletchingTable = Item{ID: 940, DisplayName: "Fletching Table", Name: "fletching_table", StackSize: 64} + Grindstone = Item{ID: 941, DisplayName: "Grindstone", Name: "grindstone", StackSize: 64} + Lectern = Item{ID: 942, DisplayName: "Lectern", Name: "lectern", StackSize: 64} + SmithingTable = Item{ID: 943, DisplayName: "Smithing Table", Name: "smithing_table", StackSize: 64} + Stonecutter = Item{ID: 944, DisplayName: "Stonecutter", Name: "stonecutter", StackSize: 64} + Bell = Item{ID: 945, DisplayName: "Bell", Name: "bell", StackSize: 64} + Lantern = Item{ID: 946, DisplayName: "Lantern", Name: "lantern", StackSize: 64} + SoulLantern = Item{ID: 947, DisplayName: "Soul Lantern", Name: "soul_lantern", StackSize: 64} + SweetBerries = Item{ID: 948, DisplayName: "Sweet Berries", Name: "sweet_berries", StackSize: 64} + Campfire = Item{ID: 949, DisplayName: "Campfire", Name: "campfire", StackSize: 64} + SoulCampfire = Item{ID: 950, DisplayName: "Soul Campfire", Name: "soul_campfire", StackSize: 64} + Shroomlight = Item{ID: 951, DisplayName: "Shroomlight", Name: "shroomlight", StackSize: 64} + Honeycomb = Item{ID: 952, DisplayName: "Honeycomb", Name: "honeycomb", StackSize: 64} + BeeNest = Item{ID: 953, DisplayName: "Bee Nest", Name: "bee_nest", StackSize: 64} + Beehive = Item{ID: 954, DisplayName: "Beehive", Name: "beehive", StackSize: 64} + HoneyBottle = Item{ID: 955, DisplayName: "Honey Bottle", Name: "honey_bottle", StackSize: 16} + HoneyBlock = Item{ID: 956, DisplayName: "Honey Block", Name: "honey_block", StackSize: 64} + HoneycombBlock = Item{ID: 957, DisplayName: "Honeycomb Block", Name: "honeycomb_block", StackSize: 64} + Lodestone = Item{ID: 958, DisplayName: "Lodestone", Name: "lodestone", StackSize: 64} + NetheriteBlock = Item{ID: 959, DisplayName: "Block of Netherite", Name: "netherite_block", StackSize: 64} + AncientDebris = Item{ID: 960, DisplayName: "Ancient Debris", Name: "ancient_debris", StackSize: 64} + Target = Item{ID: 961, DisplayName: "Target", Name: "target", StackSize: 64} + CryingObsidian = Item{ID: 962, DisplayName: "Crying Obsidian", Name: "crying_obsidian", StackSize: 64} + Blackstone = Item{ID: 963, DisplayName: "Blackstone", Name: "blackstone", StackSize: 64} + BlackstoneSlab = Item{ID: 964, DisplayName: "Blackstone Slab", Name: "blackstone_slab", StackSize: 64} + BlackstoneStairs = Item{ID: 965, DisplayName: "Blackstone Stairs", Name: "blackstone_stairs", StackSize: 64} + GildedBlackstone = Item{ID: 966, DisplayName: "Gilded Blackstone", Name: "gilded_blackstone", StackSize: 64} + PolishedBlackstone = Item{ID: 967, DisplayName: "Polished Blackstone", Name: "polished_blackstone", StackSize: 64} + PolishedBlackstoneSlab = Item{ID: 968, DisplayName: "Polished Blackstone Slab", Name: "polished_blackstone_slab", StackSize: 64} + PolishedBlackstoneStairs = Item{ID: 969, DisplayName: "Polished Blackstone Stairs", Name: "polished_blackstone_stairs", StackSize: 64} + ChiseledPolishedBlackstone = Item{ID: 970, DisplayName: "Chiseled Polished Blackstone", Name: "chiseled_polished_blackstone", StackSize: 64} + PolishedBlackstoneBricks = Item{ID: 971, DisplayName: "Polished Blackstone Bricks", Name: "polished_blackstone_bricks", StackSize: 64} + PolishedBlackstoneBrickSlab = Item{ID: 972, DisplayName: "Polished Blackstone Brick Slab", Name: "polished_blackstone_brick_slab", StackSize: 64} + PolishedBlackstoneBrickStairs = Item{ID: 973, DisplayName: "Polished Blackstone Brick Stairs", Name: "polished_blackstone_brick_stairs", StackSize: 64} + CrackedPolishedBlackstoneBricks = Item{ID: 974, DisplayName: "Cracked Polished Blackstone Bricks", Name: "cracked_polished_blackstone_bricks", StackSize: 64} + RespawnAnchor = Item{ID: 975, DisplayName: "Respawn Anchor", Name: "respawn_anchor", StackSize: 64} +) + +// ByID is an index of minecraft items by their ID. +var ByID = map[ID]*Item{ + 0: &Air, + 1: &Stone, + 2: &Granite, + 3: &PolishedGranite, + 4: &Diorite, + 5: &PolishedDiorite, + 6: &Andesite, + 7: &PolishedAndesite, + 8: &GrassBlock, + 9: &Dirt, + 10: &CoarseDirt, + 11: &Podzol, + 12: &CrimsonNylium, + 13: &WarpedNylium, + 14: &Cobblestone, + 15: &OakPlanks, + 16: &SprucePlanks, + 17: &BirchPlanks, + 18: &JunglePlanks, + 19: &AcaciaPlanks, + 20: &DarkOakPlanks, + 21: &CrimsonPlanks, + 22: &WarpedPlanks, + 23: &OakSapling, + 24: &SpruceSapling, + 25: &BirchSapling, + 26: &JungleSapling, + 27: &AcaciaSapling, + 28: &DarkOakSapling, + 29: &Bedrock, + 30: &Sand, + 31: &RedSand, + 32: &Gravel, + 33: &GoldOre, + 34: &IronOre, + 35: &CoalOre, + 36: &NetherGoldOre, + 37: &OakLog, + 38: &SpruceLog, + 39: &BirchLog, + 40: &JungleLog, + 41: &AcaciaLog, + 42: &DarkOakLog, + 43: &CrimsonStem, + 44: &WarpedStem, + 45: &StrippedOakLog, + 46: &StrippedSpruceLog, + 47: &StrippedBirchLog, + 48: &StrippedJungleLog, + 49: &StrippedAcaciaLog, + 50: &StrippedDarkOakLog, + 51: &StrippedCrimsonStem, + 52: &StrippedWarpedStem, + 53: &StrippedOakWood, + 54: &StrippedSpruceWood, + 55: &StrippedBirchWood, + 56: &StrippedJungleWood, + 57: &StrippedAcaciaWood, + 58: &StrippedDarkOakWood, + 59: &StrippedCrimsonHyphae, + 60: &StrippedWarpedHyphae, + 61: &OakWood, + 62: &SpruceWood, + 63: &BirchWood, + 64: &JungleWood, + 65: &AcaciaWood, + 66: &DarkOakWood, + 67: &CrimsonHyphae, + 68: &WarpedHyphae, + 69: &OakLeaves, + 70: &SpruceLeaves, + 71: &BirchLeaves, + 72: &JungleLeaves, + 73: &AcaciaLeaves, + 74: &DarkOakLeaves, + 75: &Sponge, + 76: &WetSponge, + 77: &Glass, + 78: &LapisOre, + 79: &LapisBlock, + 80: &Dispenser, + 81: &Sandstone, + 82: &ChiseledSandstone, + 83: &CutSandstone, + 84: &NoteBlock, + 85: &PoweredRail, + 86: &DetectorRail, + 87: &StickyPiston, + 88: &Cobweb, + 89: &Grass, + 90: &Fern, + 91: &DeadBush, + 92: &Seagrass, + 93: &SeaPickle, + 94: &Piston, + 95: &WhiteWool, + 96: &OrangeWool, + 97: &MagentaWool, + 98: &LightBlueWool, + 99: &YellowWool, + 100: &LimeWool, + 101: &PinkWool, + 102: &GrayWool, + 103: &LightGrayWool, + 104: &CyanWool, + 105: &PurpleWool, + 106: &BlueWool, + 107: &BrownWool, + 108: &GreenWool, + 109: &RedWool, + 110: &BlackWool, + 111: &Dandelion, + 112: &Poppy, + 113: &BlueOrchid, + 114: &Allium, + 115: &AzureBluet, + 116: &RedTulip, + 117: &OrangeTulip, + 118: &WhiteTulip, + 119: &PinkTulip, + 120: &OxeyeDaisy, + 121: &Cornflower, + 122: &LilyOfTheValley, + 123: &WitherRose, + 124: &BrownMushroom, + 125: &RedMushroom, + 126: &CrimsonFungus, + 127: &WarpedFungus, + 128: &CrimsonRoots, + 129: &WarpedRoots, + 130: &NetherSprouts, + 131: &WeepingVines, + 132: &TwistingVines, + 133: &SugarCane, + 134: &Kelp, + 135: &Bamboo, + 136: &GoldBlock, + 137: &IronBlock, + 138: &OakSlab, + 139: &SpruceSlab, + 140: &BirchSlab, + 141: &JungleSlab, + 142: &AcaciaSlab, + 143: &DarkOakSlab, + 144: &CrimsonSlab, + 145: &WarpedSlab, + 146: &StoneSlab, + 147: &SmoothStoneSlab, + 148: &SandstoneSlab, + 149: &CutSandstoneSlab, + 150: &PetrifiedOakSlab, + 151: &CobblestoneSlab, + 152: &BrickSlab, + 153: &StoneBrickSlab, + 154: &NetherBrickSlab, + 155: &QuartzSlab, + 156: &RedSandstoneSlab, + 157: &CutRedSandstoneSlab, + 158: &PurpurSlab, + 159: &PrismarineSlab, + 160: &PrismarineBrickSlab, + 161: &DarkPrismarineSlab, + 162: &SmoothQuartz, + 163: &SmoothRedSandstone, + 164: &SmoothSandstone, + 165: &SmoothStone, + 166: &Bricks, + 167: &Tnt, + 168: &Bookshelf, + 169: &MossyCobblestone, + 170: &Obsidian, + 171: &Torch, + 172: &EndRod, + 173: &ChorusPlant, + 174: &ChorusFlower, + 175: &PurpurBlock, + 176: &PurpurPillar, + 177: &PurpurStairs, + 178: &Spawner, + 179: &OakStairs, + 180: &Chest, + 181: &DiamondOre, + 182: &DiamondBlock, + 183: &CraftingTable, + 184: &Farmland, + 185: &Furnace, + 186: &Ladder, + 187: &Rail, + 188: &CobblestoneStairs, + 189: &Lever, + 190: &StonePressurePlate, + 191: &OakPressurePlate, + 192: &SprucePressurePlate, + 193: &BirchPressurePlate, + 194: &JunglePressurePlate, + 195: &AcaciaPressurePlate, + 196: &DarkOakPressurePlate, + 197: &CrimsonPressurePlate, + 198: &WarpedPressurePlate, + 199: &PolishedBlackstonePressurePlate, + 200: &RedstoneOre, + 201: &RedstoneTorch, + 202: &Snow, + 203: &Ice, + 204: &SnowBlock, + 205: &Cactus, + 206: &Clay, + 207: &Jukebox, + 208: &OakFence, + 209: &SpruceFence, + 210: &BirchFence, + 211: &JungleFence, + 212: &AcaciaFence, + 213: &DarkOakFence, + 214: &CrimsonFence, + 215: &WarpedFence, + 216: &Pumpkin, + 217: &CarvedPumpkin, + 218: &Netherrack, + 219: &SoulSand, + 220: &SoulSoil, + 221: &Basalt, + 222: &PolishedBasalt, + 223: &SoulTorch, + 224: &Glowstone, + 225: &JackOLantern, + 226: &OakTrapdoor, + 227: &SpruceTrapdoor, + 228: &BirchTrapdoor, + 229: &JungleTrapdoor, + 230: &AcaciaTrapdoor, + 231: &DarkOakTrapdoor, + 232: &CrimsonTrapdoor, + 233: &WarpedTrapdoor, + 234: &InfestedStone, + 235: &InfestedCobblestone, + 236: &InfestedStoneBricks, + 237: &InfestedMossyStoneBricks, + 238: &InfestedCrackedStoneBricks, + 239: &InfestedChiseledStoneBricks, + 240: &StoneBricks, + 241: &MossyStoneBricks, + 242: &CrackedStoneBricks, + 243: &ChiseledStoneBricks, + 244: &BrownMushroomBlock, + 245: &RedMushroomBlock, + 246: &MushroomStem, + 247: &IronBars, + 248: &Chain, + 249: &GlassPane, + 250: &Melon, + 251: &Vine, + 252: &OakFenceGate, + 253: &SpruceFenceGate, + 254: &BirchFenceGate, + 255: &JungleFenceGate, + 256: &AcaciaFenceGate, + 257: &DarkOakFenceGate, + 258: &CrimsonFenceGate, + 259: &WarpedFenceGate, + 260: &BrickStairs, + 261: &StoneBrickStairs, + 262: &Mycelium, + 263: &LilyPad, + 264: &NetherBricks, + 265: &CrackedNetherBricks, + 266: &ChiseledNetherBricks, + 267: &NetherBrickFence, + 268: &NetherBrickStairs, + 269: &EnchantingTable, + 270: &EndPortalFrame, + 271: &EndStone, + 272: &EndStoneBricks, + 273: &DragonEgg, + 274: &RedstoneLamp, + 275: &SandstoneStairs, + 276: &EmeraldOre, + 277: &EnderChest, + 278: &TripwireHook, + 279: &EmeraldBlock, + 280: &SpruceStairs, + 281: &BirchStairs, + 282: &JungleStairs, + 283: &CrimsonStairs, + 284: &WarpedStairs, + 285: &CommandBlock, + 286: &Beacon, + 287: &CobblestoneWall, + 288: &MossyCobblestoneWall, + 289: &BrickWall, + 290: &PrismarineWall, + 291: &RedSandstoneWall, + 292: &MossyStoneBrickWall, + 293: &GraniteWall, + 294: &StoneBrickWall, + 295: &NetherBrickWall, + 296: &AndesiteWall, + 297: &RedNetherBrickWall, + 298: &SandstoneWall, + 299: &EndStoneBrickWall, + 300: &DioriteWall, + 301: &BlackstoneWall, + 302: &PolishedBlackstoneWall, + 303: &PolishedBlackstoneBrickWall, + 304: &StoneButton, + 305: &OakButton, + 306: &SpruceButton, + 307: &BirchButton, + 308: &JungleButton, + 309: &AcaciaButton, + 310: &DarkOakButton, + 311: &CrimsonButton, + 312: &WarpedButton, + 313: &PolishedBlackstoneButton, + 314: &Anvil, + 315: &ChippedAnvil, + 316: &DamagedAnvil, + 317: &TrappedChest, + 318: &LightWeightedPressurePlate, + 319: &HeavyWeightedPressurePlate, + 320: &DaylightDetector, + 321: &RedstoneBlock, + 322: &NetherQuartzOre, + 323: &Hopper, + 324: &ChiseledQuartzBlock, + 325: &QuartzBlock, + 326: &QuartzBricks, + 327: &QuartzPillar, + 328: &QuartzStairs, + 329: &ActivatorRail, + 330: &Dropper, + 331: &WhiteTerracotta, + 332: &OrangeTerracotta, + 333: &MagentaTerracotta, + 334: &LightBlueTerracotta, + 335: &YellowTerracotta, + 336: &LimeTerracotta, + 337: &PinkTerracotta, + 338: &GrayTerracotta, + 339: &LightGrayTerracotta, + 340: &CyanTerracotta, + 341: &PurpleTerracotta, + 342: &BlueTerracotta, + 343: &BrownTerracotta, + 344: &GreenTerracotta, + 345: &RedTerracotta, + 346: &BlackTerracotta, + 347: &Barrier, + 348: &IronTrapdoor, + 349: &HayBlock, + 350: &WhiteCarpet, + 351: &OrangeCarpet, + 352: &MagentaCarpet, + 353: &LightBlueCarpet, + 354: &YellowCarpet, + 355: &LimeCarpet, + 356: &PinkCarpet, + 357: &GrayCarpet, + 358: &LightGrayCarpet, + 359: &CyanCarpet, + 360: &PurpleCarpet, + 361: &BlueCarpet, + 362: &BrownCarpet, + 363: &GreenCarpet, + 364: &RedCarpet, + 365: &BlackCarpet, + 366: &Terracotta, + 367: &CoalBlock, + 368: &PackedIce, + 369: &AcaciaStairs, + 370: &DarkOakStairs, + 371: &SlimeBlock, + 372: &GrassPath, + 373: &Sunflower, + 374: &Lilac, + 375: &RoseBush, + 376: &Peony, + 377: &TallGrass, + 378: &LargeFern, + 379: &WhiteStainedGlass, + 380: &OrangeStainedGlass, + 381: &MagentaStainedGlass, + 382: &LightBlueStainedGlass, + 383: &YellowStainedGlass, + 384: &LimeStainedGlass, + 385: &PinkStainedGlass, + 386: &GrayStainedGlass, + 387: &LightGrayStainedGlass, + 388: &CyanStainedGlass, + 389: &PurpleStainedGlass, + 390: &BlueStainedGlass, + 391: &BrownStainedGlass, + 392: &GreenStainedGlass, + 393: &RedStainedGlass, + 394: &BlackStainedGlass, + 395: &WhiteStainedGlassPane, + 396: &OrangeStainedGlassPane, + 397: &MagentaStainedGlassPane, + 398: &LightBlueStainedGlassPane, + 399: &YellowStainedGlassPane, + 400: &LimeStainedGlassPane, + 401: &PinkStainedGlassPane, + 402: &GrayStainedGlassPane, + 403: &LightGrayStainedGlassPane, + 404: &CyanStainedGlassPane, + 405: &PurpleStainedGlassPane, + 406: &BlueStainedGlassPane, + 407: &BrownStainedGlassPane, + 408: &GreenStainedGlassPane, + 409: &RedStainedGlassPane, + 410: &BlackStainedGlassPane, + 411: &Prismarine, + 412: &PrismarineBricks, + 413: &DarkPrismarine, + 414: &PrismarineStairs, + 415: &PrismarineBrickStairs, + 416: &DarkPrismarineStairs, + 417: &SeaLantern, + 418: &RedSandstone, + 419: &ChiseledRedSandstone, + 420: &CutRedSandstone, + 421: &RedSandstoneStairs, + 422: &RepeatingCommandBlock, + 423: &ChainCommandBlock, + 424: &MagmaBlock, + 425: &NetherWartBlock, + 426: &WarpedWartBlock, + 427: &RedNetherBricks, + 428: &BoneBlock, + 429: &StructureVoid, + 430: &Observer, + 431: &ShulkerBox, + 432: &WhiteShulkerBox, + 433: &OrangeShulkerBox, + 434: &MagentaShulkerBox, + 435: &LightBlueShulkerBox, + 436: &YellowShulkerBox, + 437: &LimeShulkerBox, + 438: &PinkShulkerBox, + 439: &GrayShulkerBox, + 440: &LightGrayShulkerBox, + 441: &CyanShulkerBox, + 442: &PurpleShulkerBox, + 443: &BlueShulkerBox, + 444: &BrownShulkerBox, + 445: &GreenShulkerBox, + 446: &RedShulkerBox, + 447: &BlackShulkerBox, + 448: &WhiteGlazedTerracotta, + 449: &OrangeGlazedTerracotta, + 450: &MagentaGlazedTerracotta, + 451: &LightBlueGlazedTerracotta, + 452: &YellowGlazedTerracotta, + 453: &LimeGlazedTerracotta, + 454: &PinkGlazedTerracotta, + 455: &GrayGlazedTerracotta, + 456: &LightGrayGlazedTerracotta, + 457: &CyanGlazedTerracotta, + 458: &PurpleGlazedTerracotta, + 459: &BlueGlazedTerracotta, + 460: &BrownGlazedTerracotta, + 461: &GreenGlazedTerracotta, + 462: &RedGlazedTerracotta, + 463: &BlackGlazedTerracotta, + 464: &WhiteConcrete, + 465: &OrangeConcrete, + 466: &MagentaConcrete, + 467: &LightBlueConcrete, + 468: &YellowConcrete, + 469: &LimeConcrete, + 470: &PinkConcrete, + 471: &GrayConcrete, + 472: &LightGrayConcrete, + 473: &CyanConcrete, + 474: &PurpleConcrete, + 475: &BlueConcrete, + 476: &BrownConcrete, + 477: &GreenConcrete, + 478: &RedConcrete, + 479: &BlackConcrete, + 480: &WhiteConcretePowder, + 481: &OrangeConcretePowder, + 482: &MagentaConcretePowder, + 483: &LightBlueConcretePowder, + 484: &YellowConcretePowder, + 485: &LimeConcretePowder, + 486: &PinkConcretePowder, + 487: &GrayConcretePowder, + 488: &LightGrayConcretePowder, + 489: &CyanConcretePowder, + 490: &PurpleConcretePowder, + 491: &BlueConcretePowder, + 492: &BrownConcretePowder, + 493: &GreenConcretePowder, + 494: &RedConcretePowder, + 495: &BlackConcretePowder, + 496: &TurtleEgg, + 497: &DeadTubeCoralBlock, + 498: &DeadBrainCoralBlock, + 499: &DeadBubbleCoralBlock, + 500: &DeadFireCoralBlock, + 501: &DeadHornCoralBlock, + 502: &TubeCoralBlock, + 503: &BrainCoralBlock, + 504: &BubbleCoralBlock, + 505: &FireCoralBlock, + 506: &HornCoralBlock, + 507: &TubeCoral, + 508: &BrainCoral, + 509: &BubbleCoral, + 510: &FireCoral, + 511: &HornCoral, + 512: &DeadBrainCoral, + 513: &DeadBubbleCoral, + 514: &DeadFireCoral, + 515: &DeadHornCoral, + 516: &DeadTubeCoral, + 517: &TubeCoralFan, + 518: &BrainCoralFan, + 519: &BubbleCoralFan, + 520: &FireCoralFan, + 521: &HornCoralFan, + 522: &DeadTubeCoralFan, + 523: &DeadBrainCoralFan, + 524: &DeadBubbleCoralFan, + 525: &DeadFireCoralFan, + 526: &DeadHornCoralFan, + 527: &BlueIce, + 528: &Conduit, + 529: &PolishedGraniteStairs, + 530: &SmoothRedSandstoneStairs, + 531: &MossyStoneBrickStairs, + 532: &PolishedDioriteStairs, + 533: &MossyCobblestoneStairs, + 534: &EndStoneBrickStairs, + 535: &StoneStairs, + 536: &SmoothSandstoneStairs, + 537: &SmoothQuartzStairs, + 538: &GraniteStairs, + 539: &AndesiteStairs, + 540: &RedNetherBrickStairs, + 541: &PolishedAndesiteStairs, + 542: &DioriteStairs, + 543: &PolishedGraniteSlab, + 544: &SmoothRedSandstoneSlab, + 545: &MossyStoneBrickSlab, + 546: &PolishedDioriteSlab, + 547: &MossyCobblestoneSlab, + 548: &EndStoneBrickSlab, + 549: &SmoothSandstoneSlab, + 550: &SmoothQuartzSlab, + 551: &GraniteSlab, + 552: &AndesiteSlab, + 553: &RedNetherBrickSlab, + 554: &PolishedAndesiteSlab, + 555: &DioriteSlab, + 556: &Scaffolding, + 557: &IronDoor, + 558: &OakDoor, + 559: &SpruceDoor, + 560: &BirchDoor, + 561: &JungleDoor, + 562: &AcaciaDoor, + 563: &DarkOakDoor, + 564: &CrimsonDoor, + 565: &WarpedDoor, + 566: &Repeater, + 567: &Comparator, + 568: &StructureBlock, + 569: &Jigsaw, + 570: &TurtleHelmet, + 571: &Scute, + 572: &FlintAndSteel, + 573: &Apple, + 574: &Bow, + 575: &Arrow, + 576: &Coal, + 577: &Charcoal, + 578: &Diamond, + 579: &IronIngot, + 580: &GoldIngot, + 581: &NetheriteIngot, + 582: &NetheriteScrap, + 583: &WoodenSword, + 584: &WoodenShovel, + 585: &WoodenPickaxe, + 586: &WoodenAxe, + 587: &WoodenHoe, + 588: &StoneSword, + 589: &StoneShovel, + 590: &StonePickaxe, + 591: &StoneAxe, + 592: &StoneHoe, + 593: &GoldenSword, + 594: &GoldenShovel, + 595: &GoldenPickaxe, + 596: &GoldenAxe, + 597: &GoldenHoe, + 598: &IronSword, + 599: &IronShovel, + 600: &IronPickaxe, + 601: &IronAxe, + 602: &IronHoe, + 603: &DiamondSword, + 604: &DiamondShovel, + 605: &DiamondPickaxe, + 606: &DiamondAxe, + 607: &DiamondHoe, + 608: &NetheriteSword, + 609: &NetheriteShovel, + 610: &NetheritePickaxe, + 611: &NetheriteAxe, + 612: &NetheriteHoe, + 613: &Stick, + 614: &Bowl, + 615: &MushroomStew, + 616: &String, + 617: &Feather, + 618: &Gunpowder, + 619: &WheatSeeds, + 620: &Wheat, + 621: &Bread, + 622: &LeatherHelmet, + 623: &LeatherChestplate, + 624: &LeatherLeggings, + 625: &LeatherBoots, + 626: &ChainmailHelmet, + 627: &ChainmailChestplate, + 628: &ChainmailLeggings, + 629: &ChainmailBoots, + 630: &IronHelmet, + 631: &IronChestplate, + 632: &IronLeggings, + 633: &IronBoots, + 634: &DiamondHelmet, + 635: &DiamondChestplate, + 636: &DiamondLeggings, + 637: &DiamondBoots, + 638: &GoldenHelmet, + 639: &GoldenChestplate, + 640: &GoldenLeggings, + 641: &GoldenBoots, + 642: &NetheriteHelmet, + 643: &NetheriteChestplate, + 644: &NetheriteLeggings, + 645: &NetheriteBoots, + 646: &Flint, + 647: &Porkchop, + 648: &CookedPorkchop, + 649: &Painting, + 650: &GoldenApple, + 651: &EnchantedGoldenApple, + 652: &OakSign, + 653: &SpruceSign, + 654: &BirchSign, + 655: &JungleSign, + 656: &AcaciaSign, + 657: &DarkOakSign, + 658: &CrimsonSign, + 659: &WarpedSign, + 660: &Bucket, + 661: &WaterBucket, + 662: &LavaBucket, + 663: &Minecart, + 664: &Saddle, + 665: &Redstone, + 666: &Snowball, + 667: &OakBoat, + 668: &Leather, + 669: &MilkBucket, + 670: &PufferfishBucket, + 671: &SalmonBucket, + 672: &CodBucket, + 673: &TropicalFishBucket, + 674: &Brick, + 675: &ClayBall, + 676: &DriedKelpBlock, + 677: &Paper, + 678: &Book, + 679: &SlimeBall, + 680: &ChestMinecart, + 681: &FurnaceMinecart, + 682: &Egg, + 683: &Compass, + 684: &FishingRod, + 685: &Clock, + 686: &GlowstoneDust, + 687: &Cod, + 688: &Salmon, + 689: &TropicalFish, + 690: &Pufferfish, + 691: &CookedCod, + 692: &CookedSalmon, + 693: &InkSac, + 694: &CocoaBeans, + 695: &LapisLazuli, + 696: &WhiteDye, + 697: &OrangeDye, + 698: &MagentaDye, + 699: &LightBlueDye, + 700: &YellowDye, + 701: &LimeDye, + 702: &PinkDye, + 703: &GrayDye, + 704: &LightGrayDye, + 705: &CyanDye, + 706: &PurpleDye, + 707: &BlueDye, + 708: &BrownDye, + 709: &GreenDye, + 710: &RedDye, + 711: &BlackDye, + 712: &BoneMeal, + 713: &Bone, + 714: &Sugar, + 715: &Cake, + 716: &WhiteBed, + 717: &OrangeBed, + 718: &MagentaBed, + 719: &LightBlueBed, + 720: &YellowBed, + 721: &LimeBed, + 722: &PinkBed, + 723: &GrayBed, + 724: &LightGrayBed, + 725: &CyanBed, + 726: &PurpleBed, + 727: &BlueBed, + 728: &BrownBed, + 729: &GreenBed, + 730: &RedBed, + 731: &BlackBed, + 732: &Cookie, + 733: &FilledMap, + 734: &Shears, + 735: &MelonSlice, + 736: &DriedKelp, + 737: &PumpkinSeeds, + 738: &MelonSeeds, + 739: &Beef, + 740: &CookedBeef, + 741: &Chicken, + 742: &CookedChicken, + 743: &RottenFlesh, + 744: &EnderPearl, + 745: &BlazeRod, + 746: &GhastTear, + 747: &GoldNugget, + 748: &NetherWart, + 749: &Potion, + 750: &GlassBottle, + 751: &SpiderEye, + 752: &FermentedSpiderEye, + 753: &BlazePowder, + 754: &MagmaCream, + 755: &BrewingStand, + 756: &Cauldron, + 757: &EnderEye, + 758: &GlisteringMelonSlice, + 759: &BatSpawnEgg, + 760: &BeeSpawnEgg, + 761: &BlazeSpawnEgg, + 762: &CatSpawnEgg, + 763: &CaveSpiderSpawnEgg, + 764: &ChickenSpawnEgg, + 765: &CodSpawnEgg, + 766: &CowSpawnEgg, + 767: &CreeperSpawnEgg, + 768: &DolphinSpawnEgg, + 769: &DonkeySpawnEgg, + 770: &DrownedSpawnEgg, + 771: &ElderGuardianSpawnEgg, + 772: &EndermanSpawnEgg, + 773: &EndermiteSpawnEgg, + 774: &EvokerSpawnEgg, + 775: &FoxSpawnEgg, + 776: &GhastSpawnEgg, + 777: &GuardianSpawnEgg, + 778: &HoglinSpawnEgg, + 779: &HorseSpawnEgg, + 780: &HuskSpawnEgg, + 781: &LlamaSpawnEgg, + 782: &MagmaCubeSpawnEgg, + 783: &MooshroomSpawnEgg, + 784: &MuleSpawnEgg, + 785: &OcelotSpawnEgg, + 786: &PandaSpawnEgg, + 787: &ParrotSpawnEgg, + 788: &PhantomSpawnEgg, + 789: &PigSpawnEgg, + 790: &PiglinSpawnEgg, + 791: &PiglinBruteSpawnEgg, + 792: &PillagerSpawnEgg, + 793: &PolarBearSpawnEgg, + 794: &PufferfishSpawnEgg, + 795: &RabbitSpawnEgg, + 796: &RavagerSpawnEgg, + 797: &SalmonSpawnEgg, + 798: &SheepSpawnEgg, + 799: &ShulkerSpawnEgg, + 800: &SilverfishSpawnEgg, + 801: &SkeletonSpawnEgg, + 802: &SkeletonHorseSpawnEgg, + 803: &SlimeSpawnEgg, + 804: &SpiderSpawnEgg, + 805: &SquidSpawnEgg, + 806: &StraySpawnEgg, + 807: &StriderSpawnEgg, + 808: &TraderLlamaSpawnEgg, + 809: &TropicalFishSpawnEgg, + 810: &TurtleSpawnEgg, + 811: &VexSpawnEgg, + 812: &VillagerSpawnEgg, + 813: &VindicatorSpawnEgg, + 814: &WanderingTraderSpawnEgg, + 815: &WitchSpawnEgg, + 816: &WitherSkeletonSpawnEgg, + 817: &WolfSpawnEgg, + 818: &ZoglinSpawnEgg, + 819: &ZombieSpawnEgg, + 820: &ZombieHorseSpawnEgg, + 821: &ZombieVillagerSpawnEgg, + 822: &ZombifiedPiglinSpawnEgg, + 823: &ExperienceBottle, + 824: &FireCharge, + 825: &WritableBook, + 826: &WrittenBook, + 827: &Emerald, + 828: &ItemFrame, + 829: &FlowerPot, + 830: &Carrot, + 831: &Potato, + 832: &BakedPotato, + 833: &PoisonousPotato, + 834: &Map, + 835: &GoldenCarrot, + 836: &SkeletonSkull, + 837: &WitherSkeletonSkull, + 838: &PlayerHead, + 839: &ZombieHead, + 840: &CreeperHead, + 841: &DragonHead, + 842: &CarrotOnAStick, + 843: &WarpedFungusOnAStick, + 844: &NetherStar, + 845: &PumpkinPie, + 846: &FireworkRocket, + 847: &FireworkStar, + 848: &EnchantedBook, + 849: &NetherBrick, + 850: &Quartz, + 851: &TntMinecart, + 852: &HopperMinecart, + 853: &PrismarineShard, + 854: &PrismarineCrystals, + 855: &Rabbit, + 856: &CookedRabbit, + 857: &RabbitStew, + 858: &RabbitFoot, + 859: &RabbitHide, + 860: &ArmorStand, + 861: &IronHorseArmor, + 862: &GoldenHorseArmor, + 863: &DiamondHorseArmor, + 864: &LeatherHorseArmor, + 865: &Lead, + 866: &NameTag, + 867: &CommandBlockMinecart, + 868: &Mutton, + 869: &CookedMutton, + 870: &WhiteBanner, + 871: &OrangeBanner, + 872: &MagentaBanner, + 873: &LightBlueBanner, + 874: &YellowBanner, + 875: &LimeBanner, + 876: &PinkBanner, + 877: &GrayBanner, + 878: &LightGrayBanner, + 879: &CyanBanner, + 880: &PurpleBanner, + 881: &BlueBanner, + 882: &BrownBanner, + 883: &GreenBanner, + 884: &RedBanner, + 885: &BlackBanner, + 886: &EndCrystal, + 887: &ChorusFruit, + 888: &PoppedChorusFruit, + 889: &Beetroot, + 890: &BeetrootSeeds, + 891: &BeetrootSoup, + 892: &DragonBreath, + 893: &SplashPotion, + 894: &SpectralArrow, + 895: &TippedArrow, + 896: &LingeringPotion, + 897: &Shield, + 898: &Elytra, + 899: &SpruceBoat, + 900: &BirchBoat, + 901: &JungleBoat, + 902: &AcaciaBoat, + 903: &DarkOakBoat, + 904: &TotemOfUndying, + 905: &ShulkerShell, + 906: &IronNugget, + 907: &KnowledgeBook, + 908: &DebugStick, + 909: &MusicDisc13, + 910: &MusicDiscCat, + 911: &MusicDiscBlocks, + 912: &MusicDiscChirp, + 913: &MusicDiscFar, + 914: &MusicDiscMall, + 915: &MusicDiscMellohi, + 916: &MusicDiscStal, + 917: &MusicDiscStrad, + 918: &MusicDiscWard, + 919: &MusicDisc11, + 920: &MusicDiscWait, + 921: &MusicDiscPigstep, + 922: &Trident, + 923: &PhantomMembrane, + 924: &NautilusShell, + 925: &HeartOfTheSea, + 926: &Crossbow, + 927: &SuspiciousStew, + 928: &Loom, + 929: &FlowerBannerPattern, + 930: &CreeperBannerPattern, + 931: &SkullBannerPattern, + 932: &MojangBannerPattern, + 933: &GlobeBannerPattern, + 934: &PiglinBannerPattern, + 935: &Composter, + 936: &Barrel, + 937: &Smoker, + 938: &BlastFurnace, + 939: &CartographyTable, + 940: &FletchingTable, + 941: &Grindstone, + 942: &Lectern, + 943: &SmithingTable, + 944: &Stonecutter, + 945: &Bell, + 946: &Lantern, + 947: &SoulLantern, + 948: &SweetBerries, + 949: &Campfire, + 950: &SoulCampfire, + 951: &Shroomlight, + 952: &Honeycomb, + 953: &BeeNest, + 954: &Beehive, + 955: &HoneyBottle, + 956: &HoneyBlock, + 957: &HoneycombBlock, + 958: &Lodestone, + 959: &NetheriteBlock, + 960: &AncientDebris, + 961: &Target, + 962: &CryingObsidian, + 963: &Blackstone, + 964: &BlackstoneSlab, + 965: &BlackstoneStairs, + 966: &GildedBlackstone, + 967: &PolishedBlackstone, + 968: &PolishedBlackstoneSlab, + 969: &PolishedBlackstoneStairs, + 970: &ChiseledPolishedBlackstone, + 971: &PolishedBlackstoneBricks, + 972: &PolishedBlackstoneBrickSlab, + 973: &PolishedBlackstoneBrickStairs, + 974: &CrackedPolishedBlackstoneBricks, + 975: &RespawnAnchor, +} + +// ByName is an index of minecraft items by their name. +var ByName = map[string]*Item{ + "air": &Air, + "stone": &Stone, + "granite": &Granite, + "polished_granite": &PolishedGranite, + "diorite": &Diorite, + "polished_diorite": &PolishedDiorite, + "andesite": &Andesite, + "polished_andesite": &PolishedAndesite, + "grass_block": &GrassBlock, + "dirt": &Dirt, + "coarse_dirt": &CoarseDirt, + "podzol": &Podzol, + "crimson_nylium": &CrimsonNylium, + "warped_nylium": &WarpedNylium, + "cobblestone": &Cobblestone, + "oak_planks": &OakPlanks, + "spruce_planks": &SprucePlanks, + "birch_planks": &BirchPlanks, + "jungle_planks": &JunglePlanks, + "acacia_planks": &AcaciaPlanks, + "dark_oak_planks": &DarkOakPlanks, + "crimson_planks": &CrimsonPlanks, + "warped_planks": &WarpedPlanks, + "oak_sapling": &OakSapling, + "spruce_sapling": &SpruceSapling, + "birch_sapling": &BirchSapling, + "jungle_sapling": &JungleSapling, + "acacia_sapling": &AcaciaSapling, + "dark_oak_sapling": &DarkOakSapling, + "bedrock": &Bedrock, + "sand": &Sand, + "red_sand": &RedSand, + "gravel": &Gravel, + "gold_ore": &GoldOre, + "iron_ore": &IronOre, + "coal_ore": &CoalOre, + "nether_gold_ore": &NetherGoldOre, + "oak_log": &OakLog, + "spruce_log": &SpruceLog, + "birch_log": &BirchLog, + "jungle_log": &JungleLog, + "acacia_log": &AcaciaLog, + "dark_oak_log": &DarkOakLog, + "crimson_stem": &CrimsonStem, + "warped_stem": &WarpedStem, + "stripped_oak_log": &StrippedOakLog, + "stripped_spruce_log": &StrippedSpruceLog, + "stripped_birch_log": &StrippedBirchLog, + "stripped_jungle_log": &StrippedJungleLog, + "stripped_acacia_log": &StrippedAcaciaLog, + "stripped_dark_oak_log": &StrippedDarkOakLog, + "stripped_crimson_stem": &StrippedCrimsonStem, + "stripped_warped_stem": &StrippedWarpedStem, + "stripped_oak_wood": &StrippedOakWood, + "stripped_spruce_wood": &StrippedSpruceWood, + "stripped_birch_wood": &StrippedBirchWood, + "stripped_jungle_wood": &StrippedJungleWood, + "stripped_acacia_wood": &StrippedAcaciaWood, + "stripped_dark_oak_wood": &StrippedDarkOakWood, + "stripped_crimson_hyphae": &StrippedCrimsonHyphae, + "stripped_warped_hyphae": &StrippedWarpedHyphae, + "oak_wood": &OakWood, + "spruce_wood": &SpruceWood, + "birch_wood": &BirchWood, + "jungle_wood": &JungleWood, + "acacia_wood": &AcaciaWood, + "dark_oak_wood": &DarkOakWood, + "crimson_hyphae": &CrimsonHyphae, + "warped_hyphae": &WarpedHyphae, + "oak_leaves": &OakLeaves, + "spruce_leaves": &SpruceLeaves, + "birch_leaves": &BirchLeaves, + "jungle_leaves": &JungleLeaves, + "acacia_leaves": &AcaciaLeaves, + "dark_oak_leaves": &DarkOakLeaves, + "sponge": &Sponge, + "wet_sponge": &WetSponge, + "glass": &Glass, + "lapis_ore": &LapisOre, + "lapis_block": &LapisBlock, + "dispenser": &Dispenser, + "sandstone": &Sandstone, + "chiseled_sandstone": &ChiseledSandstone, + "cut_sandstone": &CutSandstone, + "note_block": &NoteBlock, + "powered_rail": &PoweredRail, + "detector_rail": &DetectorRail, + "sticky_piston": &StickyPiston, + "cobweb": &Cobweb, + "grass": &Grass, + "fern": &Fern, + "dead_bush": &DeadBush, + "seagrass": &Seagrass, + "sea_pickle": &SeaPickle, + "piston": &Piston, + "white_wool": &WhiteWool, + "orange_wool": &OrangeWool, + "magenta_wool": &MagentaWool, + "light_blue_wool": &LightBlueWool, + "yellow_wool": &YellowWool, + "lime_wool": &LimeWool, + "pink_wool": &PinkWool, + "gray_wool": &GrayWool, + "light_gray_wool": &LightGrayWool, + "cyan_wool": &CyanWool, + "purple_wool": &PurpleWool, + "blue_wool": &BlueWool, + "brown_wool": &BrownWool, + "green_wool": &GreenWool, + "red_wool": &RedWool, + "black_wool": &BlackWool, + "dandelion": &Dandelion, + "poppy": &Poppy, + "blue_orchid": &BlueOrchid, + "allium": &Allium, + "azure_bluet": &AzureBluet, + "red_tulip": &RedTulip, + "orange_tulip": &OrangeTulip, + "white_tulip": &WhiteTulip, + "pink_tulip": &PinkTulip, + "oxeye_daisy": &OxeyeDaisy, + "cornflower": &Cornflower, + "lily_of_the_valley": &LilyOfTheValley, + "wither_rose": &WitherRose, + "brown_mushroom": &BrownMushroom, + "red_mushroom": &RedMushroom, + "crimson_fungus": &CrimsonFungus, + "warped_fungus": &WarpedFungus, + "crimson_roots": &CrimsonRoots, + "warped_roots": &WarpedRoots, + "nether_sprouts": &NetherSprouts, + "weeping_vines": &WeepingVines, + "twisting_vines": &TwistingVines, + "sugar_cane": &SugarCane, + "kelp": &Kelp, + "bamboo": &Bamboo, + "gold_block": &GoldBlock, + "iron_block": &IronBlock, + "oak_slab": &OakSlab, + "spruce_slab": &SpruceSlab, + "birch_slab": &BirchSlab, + "jungle_slab": &JungleSlab, + "acacia_slab": &AcaciaSlab, + "dark_oak_slab": &DarkOakSlab, + "crimson_slab": &CrimsonSlab, + "warped_slab": &WarpedSlab, + "stone_slab": &StoneSlab, + "smooth_stone_slab": &SmoothStoneSlab, + "sandstone_slab": &SandstoneSlab, + "cut_sandstone_slab": &CutSandstoneSlab, + "petrified_oak_slab": &PetrifiedOakSlab, + "cobblestone_slab": &CobblestoneSlab, + "brick_slab": &BrickSlab, + "stone_brick_slab": &StoneBrickSlab, + "nether_brick_slab": &NetherBrickSlab, + "quartz_slab": &QuartzSlab, + "red_sandstone_slab": &RedSandstoneSlab, + "cut_red_sandstone_slab": &CutRedSandstoneSlab, + "purpur_slab": &PurpurSlab, + "prismarine_slab": &PrismarineSlab, + "prismarine_brick_slab": &PrismarineBrickSlab, + "dark_prismarine_slab": &DarkPrismarineSlab, + "smooth_quartz": &SmoothQuartz, + "smooth_red_sandstone": &SmoothRedSandstone, + "smooth_sandstone": &SmoothSandstone, + "smooth_stone": &SmoothStone, + "bricks": &Bricks, + "tnt": &Tnt, + "bookshelf": &Bookshelf, + "mossy_cobblestone": &MossyCobblestone, + "obsidian": &Obsidian, + "torch": &Torch, + "end_rod": &EndRod, + "chorus_plant": &ChorusPlant, + "chorus_flower": &ChorusFlower, + "purpur_block": &PurpurBlock, + "purpur_pillar": &PurpurPillar, + "purpur_stairs": &PurpurStairs, + "spawner": &Spawner, + "oak_stairs": &OakStairs, + "chest": &Chest, + "diamond_ore": &DiamondOre, + "diamond_block": &DiamondBlock, + "crafting_table": &CraftingTable, + "farmland": &Farmland, + "furnace": &Furnace, + "ladder": &Ladder, + "rail": &Rail, + "cobblestone_stairs": &CobblestoneStairs, + "lever": &Lever, + "stone_pressure_plate": &StonePressurePlate, + "oak_pressure_plate": &OakPressurePlate, + "spruce_pressure_plate": &SprucePressurePlate, + "birch_pressure_plate": &BirchPressurePlate, + "jungle_pressure_plate": &JunglePressurePlate, + "acacia_pressure_plate": &AcaciaPressurePlate, + "dark_oak_pressure_plate": &DarkOakPressurePlate, + "crimson_pressure_plate": &CrimsonPressurePlate, + "warped_pressure_plate": &WarpedPressurePlate, + "polished_blackstone_pressure_plate": &PolishedBlackstonePressurePlate, + "redstone_ore": &RedstoneOre, + "redstone_torch": &RedstoneTorch, + "snow": &Snow, + "ice": &Ice, + "snow_block": &SnowBlock, + "cactus": &Cactus, + "clay": &Clay, + "jukebox": &Jukebox, + "oak_fence": &OakFence, + "spruce_fence": &SpruceFence, + "birch_fence": &BirchFence, + "jungle_fence": &JungleFence, + "acacia_fence": &AcaciaFence, + "dark_oak_fence": &DarkOakFence, + "crimson_fence": &CrimsonFence, + "warped_fence": &WarpedFence, + "pumpkin": &Pumpkin, + "carved_pumpkin": &CarvedPumpkin, + "netherrack": &Netherrack, + "soul_sand": &SoulSand, + "soul_soil": &SoulSoil, + "basalt": &Basalt, + "polished_basalt": &PolishedBasalt, + "soul_torch": &SoulTorch, + "glowstone": &Glowstone, + "jack_o_lantern": &JackOLantern, + "oak_trapdoor": &OakTrapdoor, + "spruce_trapdoor": &SpruceTrapdoor, + "birch_trapdoor": &BirchTrapdoor, + "jungle_trapdoor": &JungleTrapdoor, + "acacia_trapdoor": &AcaciaTrapdoor, + "dark_oak_trapdoor": &DarkOakTrapdoor, + "crimson_trapdoor": &CrimsonTrapdoor, + "warped_trapdoor": &WarpedTrapdoor, + "infested_stone": &InfestedStone, + "infested_cobblestone": &InfestedCobblestone, + "infested_stone_bricks": &InfestedStoneBricks, + "infested_mossy_stone_bricks": &InfestedMossyStoneBricks, + "infested_cracked_stone_bricks": &InfestedCrackedStoneBricks, + "infested_chiseled_stone_bricks": &InfestedChiseledStoneBricks, + "stone_bricks": &StoneBricks, + "mossy_stone_bricks": &MossyStoneBricks, + "cracked_stone_bricks": &CrackedStoneBricks, + "chiseled_stone_bricks": &ChiseledStoneBricks, + "brown_mushroom_block": &BrownMushroomBlock, + "red_mushroom_block": &RedMushroomBlock, + "mushroom_stem": &MushroomStem, + "iron_bars": &IronBars, + "chain": &Chain, + "glass_pane": &GlassPane, + "melon": &Melon, + "vine": &Vine, + "oak_fence_gate": &OakFenceGate, + "spruce_fence_gate": &SpruceFenceGate, + "birch_fence_gate": &BirchFenceGate, + "jungle_fence_gate": &JungleFenceGate, + "acacia_fence_gate": &AcaciaFenceGate, + "dark_oak_fence_gate": &DarkOakFenceGate, + "crimson_fence_gate": &CrimsonFenceGate, + "warped_fence_gate": &WarpedFenceGate, + "brick_stairs": &BrickStairs, + "stone_brick_stairs": &StoneBrickStairs, + "mycelium": &Mycelium, + "lily_pad": &LilyPad, + "nether_bricks": &NetherBricks, + "cracked_nether_bricks": &CrackedNetherBricks, + "chiseled_nether_bricks": &ChiseledNetherBricks, + "nether_brick_fence": &NetherBrickFence, + "nether_brick_stairs": &NetherBrickStairs, + "enchanting_table": &EnchantingTable, + "end_portal_frame": &EndPortalFrame, + "end_stone": &EndStone, + "end_stone_bricks": &EndStoneBricks, + "dragon_egg": &DragonEgg, + "redstone_lamp": &RedstoneLamp, + "sandstone_stairs": &SandstoneStairs, + "emerald_ore": &EmeraldOre, + "ender_chest": &EnderChest, + "tripwire_hook": &TripwireHook, + "emerald_block": &EmeraldBlock, + "spruce_stairs": &SpruceStairs, + "birch_stairs": &BirchStairs, + "jungle_stairs": &JungleStairs, + "crimson_stairs": &CrimsonStairs, + "warped_stairs": &WarpedStairs, + "command_block": &CommandBlock, + "beacon": &Beacon, + "cobblestone_wall": &CobblestoneWall, + "mossy_cobblestone_wall": &MossyCobblestoneWall, + "brick_wall": &BrickWall, + "prismarine_wall": &PrismarineWall, + "red_sandstone_wall": &RedSandstoneWall, + "mossy_stone_brick_wall": &MossyStoneBrickWall, + "granite_wall": &GraniteWall, + "stone_brick_wall": &StoneBrickWall, + "nether_brick_wall": &NetherBrickWall, + "andesite_wall": &AndesiteWall, + "red_nether_brick_wall": &RedNetherBrickWall, + "sandstone_wall": &SandstoneWall, + "end_stone_brick_wall": &EndStoneBrickWall, + "diorite_wall": &DioriteWall, + "blackstone_wall": &BlackstoneWall, + "polished_blackstone_wall": &PolishedBlackstoneWall, + "polished_blackstone_brick_wall": &PolishedBlackstoneBrickWall, + "stone_button": &StoneButton, + "oak_button": &OakButton, + "spruce_button": &SpruceButton, + "birch_button": &BirchButton, + "jungle_button": &JungleButton, + "acacia_button": &AcaciaButton, + "dark_oak_button": &DarkOakButton, + "crimson_button": &CrimsonButton, + "warped_button": &WarpedButton, + "polished_blackstone_button": &PolishedBlackstoneButton, + "anvil": &Anvil, + "chipped_anvil": &ChippedAnvil, + "damaged_anvil": &DamagedAnvil, + "trapped_chest": &TrappedChest, + "light_weighted_pressure_plate": &LightWeightedPressurePlate, + "heavy_weighted_pressure_plate": &HeavyWeightedPressurePlate, + "daylight_detector": &DaylightDetector, + "redstone_block": &RedstoneBlock, + "nether_quartz_ore": &NetherQuartzOre, + "hopper": &Hopper, + "chiseled_quartz_block": &ChiseledQuartzBlock, + "quartz_block": &QuartzBlock, + "quartz_bricks": &QuartzBricks, + "quartz_pillar": &QuartzPillar, + "quartz_stairs": &QuartzStairs, + "activator_rail": &ActivatorRail, + "dropper": &Dropper, + "white_terracotta": &WhiteTerracotta, + "orange_terracotta": &OrangeTerracotta, + "magenta_terracotta": &MagentaTerracotta, + "light_blue_terracotta": &LightBlueTerracotta, + "yellow_terracotta": &YellowTerracotta, + "lime_terracotta": &LimeTerracotta, + "pink_terracotta": &PinkTerracotta, + "gray_terracotta": &GrayTerracotta, + "light_gray_terracotta": &LightGrayTerracotta, + "cyan_terracotta": &CyanTerracotta, + "purple_terracotta": &PurpleTerracotta, + "blue_terracotta": &BlueTerracotta, + "brown_terracotta": &BrownTerracotta, + "green_terracotta": &GreenTerracotta, + "red_terracotta": &RedTerracotta, + "black_terracotta": &BlackTerracotta, + "barrier": &Barrier, + "iron_trapdoor": &IronTrapdoor, + "hay_block": &HayBlock, + "white_carpet": &WhiteCarpet, + "orange_carpet": &OrangeCarpet, + "magenta_carpet": &MagentaCarpet, + "light_blue_carpet": &LightBlueCarpet, + "yellow_carpet": &YellowCarpet, + "lime_carpet": &LimeCarpet, + "pink_carpet": &PinkCarpet, + "gray_carpet": &GrayCarpet, + "light_gray_carpet": &LightGrayCarpet, + "cyan_carpet": &CyanCarpet, + "purple_carpet": &PurpleCarpet, + "blue_carpet": &BlueCarpet, + "brown_carpet": &BrownCarpet, + "green_carpet": &GreenCarpet, + "red_carpet": &RedCarpet, + "black_carpet": &BlackCarpet, + "terracotta": &Terracotta, + "coal_block": &CoalBlock, + "packed_ice": &PackedIce, + "acacia_stairs": &AcaciaStairs, + "dark_oak_stairs": &DarkOakStairs, + "slime_block": &SlimeBlock, + "grass_path": &GrassPath, + "sunflower": &Sunflower, + "lilac": &Lilac, + "rose_bush": &RoseBush, + "peony": &Peony, + "tall_grass": &TallGrass, + "large_fern": &LargeFern, + "white_stained_glass": &WhiteStainedGlass, + "orange_stained_glass": &OrangeStainedGlass, + "magenta_stained_glass": &MagentaStainedGlass, + "light_blue_stained_glass": &LightBlueStainedGlass, + "yellow_stained_glass": &YellowStainedGlass, + "lime_stained_glass": &LimeStainedGlass, + "pink_stained_glass": &PinkStainedGlass, + "gray_stained_glass": &GrayStainedGlass, + "light_gray_stained_glass": &LightGrayStainedGlass, + "cyan_stained_glass": &CyanStainedGlass, + "purple_stained_glass": &PurpleStainedGlass, + "blue_stained_glass": &BlueStainedGlass, + "brown_stained_glass": &BrownStainedGlass, + "green_stained_glass": &GreenStainedGlass, + "red_stained_glass": &RedStainedGlass, + "black_stained_glass": &BlackStainedGlass, + "white_stained_glass_pane": &WhiteStainedGlassPane, + "orange_stained_glass_pane": &OrangeStainedGlassPane, + "magenta_stained_glass_pane": &MagentaStainedGlassPane, + "light_blue_stained_glass_pane": &LightBlueStainedGlassPane, + "yellow_stained_glass_pane": &YellowStainedGlassPane, + "lime_stained_glass_pane": &LimeStainedGlassPane, + "pink_stained_glass_pane": &PinkStainedGlassPane, + "gray_stained_glass_pane": &GrayStainedGlassPane, + "light_gray_stained_glass_pane": &LightGrayStainedGlassPane, + "cyan_stained_glass_pane": &CyanStainedGlassPane, + "purple_stained_glass_pane": &PurpleStainedGlassPane, + "blue_stained_glass_pane": &BlueStainedGlassPane, + "brown_stained_glass_pane": &BrownStainedGlassPane, + "green_stained_glass_pane": &GreenStainedGlassPane, + "red_stained_glass_pane": &RedStainedGlassPane, + "black_stained_glass_pane": &BlackStainedGlassPane, + "prismarine": &Prismarine, + "prismarine_bricks": &PrismarineBricks, + "dark_prismarine": &DarkPrismarine, + "prismarine_stairs": &PrismarineStairs, + "prismarine_brick_stairs": &PrismarineBrickStairs, + "dark_prismarine_stairs": &DarkPrismarineStairs, + "sea_lantern": &SeaLantern, + "red_sandstone": &RedSandstone, + "chiseled_red_sandstone": &ChiseledRedSandstone, + "cut_red_sandstone": &CutRedSandstone, + "red_sandstone_stairs": &RedSandstoneStairs, + "repeating_command_block": &RepeatingCommandBlock, + "chain_command_block": &ChainCommandBlock, + "magma_block": &MagmaBlock, + "nether_wart_block": &NetherWartBlock, + "warped_wart_block": &WarpedWartBlock, + "red_nether_bricks": &RedNetherBricks, + "bone_block": &BoneBlock, + "structure_void": &StructureVoid, + "observer": &Observer, + "shulker_box": &ShulkerBox, + "white_shulker_box": &WhiteShulkerBox, + "orange_shulker_box": &OrangeShulkerBox, + "magenta_shulker_box": &MagentaShulkerBox, + "light_blue_shulker_box": &LightBlueShulkerBox, + "yellow_shulker_box": &YellowShulkerBox, + "lime_shulker_box": &LimeShulkerBox, + "pink_shulker_box": &PinkShulkerBox, + "gray_shulker_box": &GrayShulkerBox, + "light_gray_shulker_box": &LightGrayShulkerBox, + "cyan_shulker_box": &CyanShulkerBox, + "purple_shulker_box": &PurpleShulkerBox, + "blue_shulker_box": &BlueShulkerBox, + "brown_shulker_box": &BrownShulkerBox, + "green_shulker_box": &GreenShulkerBox, + "red_shulker_box": &RedShulkerBox, + "black_shulker_box": &BlackShulkerBox, + "white_glazed_terracotta": &WhiteGlazedTerracotta, + "orange_glazed_terracotta": &OrangeGlazedTerracotta, + "magenta_glazed_terracotta": &MagentaGlazedTerracotta, + "light_blue_glazed_terracotta": &LightBlueGlazedTerracotta, + "yellow_glazed_terracotta": &YellowGlazedTerracotta, + "lime_glazed_terracotta": &LimeGlazedTerracotta, + "pink_glazed_terracotta": &PinkGlazedTerracotta, + "gray_glazed_terracotta": &GrayGlazedTerracotta, + "light_gray_glazed_terracotta": &LightGrayGlazedTerracotta, + "cyan_glazed_terracotta": &CyanGlazedTerracotta, + "purple_glazed_terracotta": &PurpleGlazedTerracotta, + "blue_glazed_terracotta": &BlueGlazedTerracotta, + "brown_glazed_terracotta": &BrownGlazedTerracotta, + "green_glazed_terracotta": &GreenGlazedTerracotta, + "red_glazed_terracotta": &RedGlazedTerracotta, + "black_glazed_terracotta": &BlackGlazedTerracotta, + "white_concrete": &WhiteConcrete, + "orange_concrete": &OrangeConcrete, + "magenta_concrete": &MagentaConcrete, + "light_blue_concrete": &LightBlueConcrete, + "yellow_concrete": &YellowConcrete, + "lime_concrete": &LimeConcrete, + "pink_concrete": &PinkConcrete, + "gray_concrete": &GrayConcrete, + "light_gray_concrete": &LightGrayConcrete, + "cyan_concrete": &CyanConcrete, + "purple_concrete": &PurpleConcrete, + "blue_concrete": &BlueConcrete, + "brown_concrete": &BrownConcrete, + "green_concrete": &GreenConcrete, + "red_concrete": &RedConcrete, + "black_concrete": &BlackConcrete, + "white_concrete_powder": &WhiteConcretePowder, + "orange_concrete_powder": &OrangeConcretePowder, + "magenta_concrete_powder": &MagentaConcretePowder, + "light_blue_concrete_powder": &LightBlueConcretePowder, + "yellow_concrete_powder": &YellowConcretePowder, + "lime_concrete_powder": &LimeConcretePowder, + "pink_concrete_powder": &PinkConcretePowder, + "gray_concrete_powder": &GrayConcretePowder, + "light_gray_concrete_powder": &LightGrayConcretePowder, + "cyan_concrete_powder": &CyanConcretePowder, + "purple_concrete_powder": &PurpleConcretePowder, + "blue_concrete_powder": &BlueConcretePowder, + "brown_concrete_powder": &BrownConcretePowder, + "green_concrete_powder": &GreenConcretePowder, + "red_concrete_powder": &RedConcretePowder, + "black_concrete_powder": &BlackConcretePowder, + "turtle_egg": &TurtleEgg, + "dead_tube_coral_block": &DeadTubeCoralBlock, + "dead_brain_coral_block": &DeadBrainCoralBlock, + "dead_bubble_coral_block": &DeadBubbleCoralBlock, + "dead_fire_coral_block": &DeadFireCoralBlock, + "dead_horn_coral_block": &DeadHornCoralBlock, + "tube_coral_block": &TubeCoralBlock, + "brain_coral_block": &BrainCoralBlock, + "bubble_coral_block": &BubbleCoralBlock, + "fire_coral_block": &FireCoralBlock, + "horn_coral_block": &HornCoralBlock, + "tube_coral": &TubeCoral, + "brain_coral": &BrainCoral, + "bubble_coral": &BubbleCoral, + "fire_coral": &FireCoral, + "horn_coral": &HornCoral, + "dead_brain_coral": &DeadBrainCoral, + "dead_bubble_coral": &DeadBubbleCoral, + "dead_fire_coral": &DeadFireCoral, + "dead_horn_coral": &DeadHornCoral, + "dead_tube_coral": &DeadTubeCoral, + "tube_coral_fan": &TubeCoralFan, + "brain_coral_fan": &BrainCoralFan, + "bubble_coral_fan": &BubbleCoralFan, + "fire_coral_fan": &FireCoralFan, + "horn_coral_fan": &HornCoralFan, + "dead_tube_coral_fan": &DeadTubeCoralFan, + "dead_brain_coral_fan": &DeadBrainCoralFan, + "dead_bubble_coral_fan": &DeadBubbleCoralFan, + "dead_fire_coral_fan": &DeadFireCoralFan, + "dead_horn_coral_fan": &DeadHornCoralFan, + "blue_ice": &BlueIce, + "conduit": &Conduit, + "polished_granite_stairs": &PolishedGraniteStairs, + "smooth_red_sandstone_stairs": &SmoothRedSandstoneStairs, + "mossy_stone_brick_stairs": &MossyStoneBrickStairs, + "polished_diorite_stairs": &PolishedDioriteStairs, + "mossy_cobblestone_stairs": &MossyCobblestoneStairs, + "end_stone_brick_stairs": &EndStoneBrickStairs, + "stone_stairs": &StoneStairs, + "smooth_sandstone_stairs": &SmoothSandstoneStairs, + "smooth_quartz_stairs": &SmoothQuartzStairs, + "granite_stairs": &GraniteStairs, + "andesite_stairs": &AndesiteStairs, + "red_nether_brick_stairs": &RedNetherBrickStairs, + "polished_andesite_stairs": &PolishedAndesiteStairs, + "diorite_stairs": &DioriteStairs, + "polished_granite_slab": &PolishedGraniteSlab, + "smooth_red_sandstone_slab": &SmoothRedSandstoneSlab, + "mossy_stone_brick_slab": &MossyStoneBrickSlab, + "polished_diorite_slab": &PolishedDioriteSlab, + "mossy_cobblestone_slab": &MossyCobblestoneSlab, + "end_stone_brick_slab": &EndStoneBrickSlab, + "smooth_sandstone_slab": &SmoothSandstoneSlab, + "smooth_quartz_slab": &SmoothQuartzSlab, + "granite_slab": &GraniteSlab, + "andesite_slab": &AndesiteSlab, + "red_nether_brick_slab": &RedNetherBrickSlab, + "polished_andesite_slab": &PolishedAndesiteSlab, + "diorite_slab": &DioriteSlab, + "scaffolding": &Scaffolding, + "iron_door": &IronDoor, + "oak_door": &OakDoor, + "spruce_door": &SpruceDoor, + "birch_door": &BirchDoor, + "jungle_door": &JungleDoor, + "acacia_door": &AcaciaDoor, + "dark_oak_door": &DarkOakDoor, + "crimson_door": &CrimsonDoor, + "warped_door": &WarpedDoor, + "repeater": &Repeater, + "comparator": &Comparator, + "structure_block": &StructureBlock, + "jigsaw": &Jigsaw, + "turtle_helmet": &TurtleHelmet, + "scute": &Scute, + "flint_and_steel": &FlintAndSteel, + "apple": &Apple, + "bow": &Bow, + "arrow": &Arrow, + "coal": &Coal, + "charcoal": &Charcoal, + "diamond": &Diamond, + "iron_ingot": &IronIngot, + "gold_ingot": &GoldIngot, + "netherite_ingot": &NetheriteIngot, + "netherite_scrap": &NetheriteScrap, + "wooden_sword": &WoodenSword, + "wooden_shovel": &WoodenShovel, + "wooden_pickaxe": &WoodenPickaxe, + "wooden_axe": &WoodenAxe, + "wooden_hoe": &WoodenHoe, + "stone_sword": &StoneSword, + "stone_shovel": &StoneShovel, + "stone_pickaxe": &StonePickaxe, + "stone_axe": &StoneAxe, + "stone_hoe": &StoneHoe, + "golden_sword": &GoldenSword, + "golden_shovel": &GoldenShovel, + "golden_pickaxe": &GoldenPickaxe, + "golden_axe": &GoldenAxe, + "golden_hoe": &GoldenHoe, + "iron_sword": &IronSword, + "iron_shovel": &IronShovel, + "iron_pickaxe": &IronPickaxe, + "iron_axe": &IronAxe, + "iron_hoe": &IronHoe, + "diamond_sword": &DiamondSword, + "diamond_shovel": &DiamondShovel, + "diamond_pickaxe": &DiamondPickaxe, + "diamond_axe": &DiamondAxe, + "diamond_hoe": &DiamondHoe, + "netherite_sword": &NetheriteSword, + "netherite_shovel": &NetheriteShovel, + "netherite_pickaxe": &NetheritePickaxe, + "netherite_axe": &NetheriteAxe, + "netherite_hoe": &NetheriteHoe, + "stick": &Stick, + "bowl": &Bowl, + "mushroom_stew": &MushroomStew, + "string": &String, + "feather": &Feather, + "gunpowder": &Gunpowder, + "wheat_seeds": &WheatSeeds, + "wheat": &Wheat, + "bread": &Bread, + "leather_helmet": &LeatherHelmet, + "leather_chestplate": &LeatherChestplate, + "leather_leggings": &LeatherLeggings, + "leather_boots": &LeatherBoots, + "chainmail_helmet": &ChainmailHelmet, + "chainmail_chestplate": &ChainmailChestplate, + "chainmail_leggings": &ChainmailLeggings, + "chainmail_boots": &ChainmailBoots, + "iron_helmet": &IronHelmet, + "iron_chestplate": &IronChestplate, + "iron_leggings": &IronLeggings, + "iron_boots": &IronBoots, + "diamond_helmet": &DiamondHelmet, + "diamond_chestplate": &DiamondChestplate, + "diamond_leggings": &DiamondLeggings, + "diamond_boots": &DiamondBoots, + "golden_helmet": &GoldenHelmet, + "golden_chestplate": &GoldenChestplate, + "golden_leggings": &GoldenLeggings, + "golden_boots": &GoldenBoots, + "netherite_helmet": &NetheriteHelmet, + "netherite_chestplate": &NetheriteChestplate, + "netherite_leggings": &NetheriteLeggings, + "netherite_boots": &NetheriteBoots, + "flint": &Flint, + "porkchop": &Porkchop, + "cooked_porkchop": &CookedPorkchop, + "painting": &Painting, + "golden_apple": &GoldenApple, + "enchanted_golden_apple": &EnchantedGoldenApple, + "oak_sign": &OakSign, + "spruce_sign": &SpruceSign, + "birch_sign": &BirchSign, + "jungle_sign": &JungleSign, + "acacia_sign": &AcaciaSign, + "dark_oak_sign": &DarkOakSign, + "crimson_sign": &CrimsonSign, + "warped_sign": &WarpedSign, + "bucket": &Bucket, + "water_bucket": &WaterBucket, + "lava_bucket": &LavaBucket, + "minecart": &Minecart, + "saddle": &Saddle, + "redstone": &Redstone, + "snowball": &Snowball, + "oak_boat": &OakBoat, + "leather": &Leather, + "milk_bucket": &MilkBucket, + "pufferfish_bucket": &PufferfishBucket, + "salmon_bucket": &SalmonBucket, + "cod_bucket": &CodBucket, + "tropical_fish_bucket": &TropicalFishBucket, + "brick": &Brick, + "clay_ball": &ClayBall, + "dried_kelp_block": &DriedKelpBlock, + "paper": &Paper, + "book": &Book, + "slime_ball": &SlimeBall, + "chest_minecart": &ChestMinecart, + "furnace_minecart": &FurnaceMinecart, + "egg": &Egg, + "compass": &Compass, + "fishing_rod": &FishingRod, + "clock": &Clock, + "glowstone_dust": &GlowstoneDust, + "cod": &Cod, + "salmon": &Salmon, + "tropical_fish": &TropicalFish, + "pufferfish": &Pufferfish, + "cooked_cod": &CookedCod, + "cooked_salmon": &CookedSalmon, + "ink_sac": &InkSac, + "cocoa_beans": &CocoaBeans, + "lapis_lazuli": &LapisLazuli, + "white_dye": &WhiteDye, + "orange_dye": &OrangeDye, + "magenta_dye": &MagentaDye, + "light_blue_dye": &LightBlueDye, + "yellow_dye": &YellowDye, + "lime_dye": &LimeDye, + "pink_dye": &PinkDye, + "gray_dye": &GrayDye, + "light_gray_dye": &LightGrayDye, + "cyan_dye": &CyanDye, + "purple_dye": &PurpleDye, + "blue_dye": &BlueDye, + "brown_dye": &BrownDye, + "green_dye": &GreenDye, + "red_dye": &RedDye, + "black_dye": &BlackDye, + "bone_meal": &BoneMeal, + "bone": &Bone, + "sugar": &Sugar, + "cake": &Cake, + "white_bed": &WhiteBed, + "orange_bed": &OrangeBed, + "magenta_bed": &MagentaBed, + "light_blue_bed": &LightBlueBed, + "yellow_bed": &YellowBed, + "lime_bed": &LimeBed, + "pink_bed": &PinkBed, + "gray_bed": &GrayBed, + "light_gray_bed": &LightGrayBed, + "cyan_bed": &CyanBed, + "purple_bed": &PurpleBed, + "blue_bed": &BlueBed, + "brown_bed": &BrownBed, + "green_bed": &GreenBed, + "red_bed": &RedBed, + "black_bed": &BlackBed, + "cookie": &Cookie, + "filled_map": &FilledMap, + "shears": &Shears, + "melon_slice": &MelonSlice, + "dried_kelp": &DriedKelp, + "pumpkin_seeds": &PumpkinSeeds, + "melon_seeds": &MelonSeeds, + "beef": &Beef, + "cooked_beef": &CookedBeef, + "chicken": &Chicken, + "cooked_chicken": &CookedChicken, + "rotten_flesh": &RottenFlesh, + "ender_pearl": &EnderPearl, + "blaze_rod": &BlazeRod, + "ghast_tear": &GhastTear, + "gold_nugget": &GoldNugget, + "nether_wart": &NetherWart, + "potion": &Potion, + "glass_bottle": &GlassBottle, + "spider_eye": &SpiderEye, + "fermented_spider_eye": &FermentedSpiderEye, + "blaze_powder": &BlazePowder, + "magma_cream": &MagmaCream, + "brewing_stand": &BrewingStand, + "cauldron": &Cauldron, + "ender_eye": &EnderEye, + "glistering_melon_slice": &GlisteringMelonSlice, + "bat_spawn_egg": &BatSpawnEgg, + "bee_spawn_egg": &BeeSpawnEgg, + "blaze_spawn_egg": &BlazeSpawnEgg, + "cat_spawn_egg": &CatSpawnEgg, + "cave_spider_spawn_egg": &CaveSpiderSpawnEgg, + "chicken_spawn_egg": &ChickenSpawnEgg, + "cod_spawn_egg": &CodSpawnEgg, + "cow_spawn_egg": &CowSpawnEgg, + "creeper_spawn_egg": &CreeperSpawnEgg, + "dolphin_spawn_egg": &DolphinSpawnEgg, + "donkey_spawn_egg": &DonkeySpawnEgg, + "drowned_spawn_egg": &DrownedSpawnEgg, + "elder_guardian_spawn_egg": &ElderGuardianSpawnEgg, + "enderman_spawn_egg": &EndermanSpawnEgg, + "endermite_spawn_egg": &EndermiteSpawnEgg, + "evoker_spawn_egg": &EvokerSpawnEgg, + "fox_spawn_egg": &FoxSpawnEgg, + "ghast_spawn_egg": &GhastSpawnEgg, + "guardian_spawn_egg": &GuardianSpawnEgg, + "hoglin_spawn_egg": &HoglinSpawnEgg, + "horse_spawn_egg": &HorseSpawnEgg, + "husk_spawn_egg": &HuskSpawnEgg, + "llama_spawn_egg": &LlamaSpawnEgg, + "magma_cube_spawn_egg": &MagmaCubeSpawnEgg, + "mooshroom_spawn_egg": &MooshroomSpawnEgg, + "mule_spawn_egg": &MuleSpawnEgg, + "ocelot_spawn_egg": &OcelotSpawnEgg, + "panda_spawn_egg": &PandaSpawnEgg, + "parrot_spawn_egg": &ParrotSpawnEgg, + "phantom_spawn_egg": &PhantomSpawnEgg, + "pig_spawn_egg": &PigSpawnEgg, + "piglin_spawn_egg": &PiglinSpawnEgg, + "piglin_brute_spawn_egg": &PiglinBruteSpawnEgg, + "pillager_spawn_egg": &PillagerSpawnEgg, + "polar_bear_spawn_egg": &PolarBearSpawnEgg, + "pufferfish_spawn_egg": &PufferfishSpawnEgg, + "rabbit_spawn_egg": &RabbitSpawnEgg, + "ravager_spawn_egg": &RavagerSpawnEgg, + "salmon_spawn_egg": &SalmonSpawnEgg, + "sheep_spawn_egg": &SheepSpawnEgg, + "shulker_spawn_egg": &ShulkerSpawnEgg, + "silverfish_spawn_egg": &SilverfishSpawnEgg, + "skeleton_spawn_egg": &SkeletonSpawnEgg, + "skeleton_horse_spawn_egg": &SkeletonHorseSpawnEgg, + "slime_spawn_egg": &SlimeSpawnEgg, + "spider_spawn_egg": &SpiderSpawnEgg, + "squid_spawn_egg": &SquidSpawnEgg, + "stray_spawn_egg": &StraySpawnEgg, + "strider_spawn_egg": &StriderSpawnEgg, + "trader_llama_spawn_egg": &TraderLlamaSpawnEgg, + "tropical_fish_spawn_egg": &TropicalFishSpawnEgg, + "turtle_spawn_egg": &TurtleSpawnEgg, + "vex_spawn_egg": &VexSpawnEgg, + "villager_spawn_egg": &VillagerSpawnEgg, + "vindicator_spawn_egg": &VindicatorSpawnEgg, + "wandering_trader_spawn_egg": &WanderingTraderSpawnEgg, + "witch_spawn_egg": &WitchSpawnEgg, + "wither_skeleton_spawn_egg": &WitherSkeletonSpawnEgg, + "wolf_spawn_egg": &WolfSpawnEgg, + "zoglin_spawn_egg": &ZoglinSpawnEgg, + "zombie_spawn_egg": &ZombieSpawnEgg, + "zombie_horse_spawn_egg": &ZombieHorseSpawnEgg, + "zombie_villager_spawn_egg": &ZombieVillagerSpawnEgg, + "zombified_piglin_spawn_egg": &ZombifiedPiglinSpawnEgg, + "experience_bottle": &ExperienceBottle, + "fire_charge": &FireCharge, + "writable_book": &WritableBook, + "written_book": &WrittenBook, + "emerald": &Emerald, + "item_frame": &ItemFrame, + "flower_pot": &FlowerPot, + "carrot": &Carrot, + "potato": &Potato, + "baked_potato": &BakedPotato, + "poisonous_potato": &PoisonousPotato, + "map": &Map, + "golden_carrot": &GoldenCarrot, + "skeleton_skull": &SkeletonSkull, + "wither_skeleton_skull": &WitherSkeletonSkull, + "player_head": &PlayerHead, + "zombie_head": &ZombieHead, + "creeper_head": &CreeperHead, + "dragon_head": &DragonHead, + "carrot_on_a_stick": &CarrotOnAStick, + "warped_fungus_on_a_stick": &WarpedFungusOnAStick, + "nether_star": &NetherStar, + "pumpkin_pie": &PumpkinPie, + "firework_rocket": &FireworkRocket, + "firework_star": &FireworkStar, + "enchanted_book": &EnchantedBook, + "nether_brick": &NetherBrick, + "quartz": &Quartz, + "tnt_minecart": &TntMinecart, + "hopper_minecart": &HopperMinecart, + "prismarine_shard": &PrismarineShard, + "prismarine_crystals": &PrismarineCrystals, + "rabbit": &Rabbit, + "cooked_rabbit": &CookedRabbit, + "rabbit_stew": &RabbitStew, + "rabbit_foot": &RabbitFoot, + "rabbit_hide": &RabbitHide, + "armor_stand": &ArmorStand, + "iron_horse_armor": &IronHorseArmor, + "golden_horse_armor": &GoldenHorseArmor, + "diamond_horse_armor": &DiamondHorseArmor, + "leather_horse_armor": &LeatherHorseArmor, + "lead": &Lead, + "name_tag": &NameTag, + "command_block_minecart": &CommandBlockMinecart, + "mutton": &Mutton, + "cooked_mutton": &CookedMutton, + "white_banner": &WhiteBanner, + "orange_banner": &OrangeBanner, + "magenta_banner": &MagentaBanner, + "light_blue_banner": &LightBlueBanner, + "yellow_banner": &YellowBanner, + "lime_banner": &LimeBanner, + "pink_banner": &PinkBanner, + "gray_banner": &GrayBanner, + "light_gray_banner": &LightGrayBanner, + "cyan_banner": &CyanBanner, + "purple_banner": &PurpleBanner, + "blue_banner": &BlueBanner, + "brown_banner": &BrownBanner, + "green_banner": &GreenBanner, + "red_banner": &RedBanner, + "black_banner": &BlackBanner, + "end_crystal": &EndCrystal, + "chorus_fruit": &ChorusFruit, + "popped_chorus_fruit": &PoppedChorusFruit, + "beetroot": &Beetroot, + "beetroot_seeds": &BeetrootSeeds, + "beetroot_soup": &BeetrootSoup, + "dragon_breath": &DragonBreath, + "splash_potion": &SplashPotion, + "spectral_arrow": &SpectralArrow, + "tipped_arrow": &TippedArrow, + "lingering_potion": &LingeringPotion, + "shield": &Shield, + "elytra": &Elytra, + "spruce_boat": &SpruceBoat, + "birch_boat": &BirchBoat, + "jungle_boat": &JungleBoat, + "acacia_boat": &AcaciaBoat, + "dark_oak_boat": &DarkOakBoat, + "totem_of_undying": &TotemOfUndying, + "shulker_shell": &ShulkerShell, + "iron_nugget": &IronNugget, + "knowledge_book": &KnowledgeBook, + "debug_stick": &DebugStick, + "music_disc_13": &MusicDisc13, + "music_disc_cat": &MusicDiscCat, + "music_disc_blocks": &MusicDiscBlocks, + "music_disc_chirp": &MusicDiscChirp, + "music_disc_far": &MusicDiscFar, + "music_disc_mall": &MusicDiscMall, + "music_disc_mellohi": &MusicDiscMellohi, + "music_disc_stal": &MusicDiscStal, + "music_disc_strad": &MusicDiscStrad, + "music_disc_ward": &MusicDiscWard, + "music_disc_11": &MusicDisc11, + "music_disc_wait": &MusicDiscWait, + "music_disc_pigstep": &MusicDiscPigstep, + "trident": &Trident, + "phantom_membrane": &PhantomMembrane, + "nautilus_shell": &NautilusShell, + "heart_of_the_sea": &HeartOfTheSea, + "crossbow": &Crossbow, + "suspicious_stew": &SuspiciousStew, + "loom": &Loom, + "flower_banner_pattern": &FlowerBannerPattern, + "creeper_banner_pattern": &CreeperBannerPattern, + "skull_banner_pattern": &SkullBannerPattern, + "mojang_banner_pattern": &MojangBannerPattern, + "globe_banner_pattern": &GlobeBannerPattern, + "piglin_banner_pattern": &PiglinBannerPattern, + "composter": &Composter, + "barrel": &Barrel, + "smoker": &Smoker, + "blast_furnace": &BlastFurnace, + "cartography_table": &CartographyTable, + "fletching_table": &FletchingTable, + "grindstone": &Grindstone, + "lectern": &Lectern, + "smithing_table": &SmithingTable, + "stonecutter": &Stonecutter, + "bell": &Bell, + "lantern": &Lantern, + "soul_lantern": &SoulLantern, + "sweet_berries": &SweetBerries, + "campfire": &Campfire, + "soul_campfire": &SoulCampfire, + "shroomlight": &Shroomlight, + "honeycomb": &Honeycomb, + "bee_nest": &BeeNest, + "beehive": &Beehive, + "honey_bottle": &HoneyBottle, + "honey_block": &HoneyBlock, + "honeycomb_block": &HoneycombBlock, + "lodestone": &Lodestone, + "netherite_block": &NetheriteBlock, + "ancient_debris": &AncientDebris, + "target": &Target, + "crying_obsidian": &CryingObsidian, + "blackstone": &Blackstone, + "blackstone_slab": &BlackstoneSlab, + "blackstone_stairs": &BlackstoneStairs, + "gilded_blackstone": &GildedBlackstone, + "polished_blackstone": &PolishedBlackstone, + "polished_blackstone_slab": &PolishedBlackstoneSlab, + "polished_blackstone_stairs": &PolishedBlackstoneStairs, + "chiseled_polished_blackstone": &ChiseledPolishedBlackstone, + "polished_blackstone_bricks": &PolishedBlackstoneBricks, + "polished_blackstone_brick_slab": &PolishedBlackstoneBrickSlab, + "polished_blackstone_brick_stairs": &PolishedBlackstoneBrickStairs, + "cracked_polished_blackstone_bricks": &CrackedPolishedBlackstoneBricks, + "respawn_anchor": &RespawnAnchor, +} diff --git a/data/items.go b/data/items.go deleted file mode 100644 index 7f5b8e7..0000000 --- a/data/items.go +++ /dev/null @@ -1,2064 +0,0 @@ -package data - -import "encoding/json" - -var itemIDs map[string]struct { - ProtocolID int `json:"protocol_id"` -} - -// ItemNameByID store Item's ID and -var ItemNameByID []string - -func init() { - json.Unmarshal([]byte(itemIDsJSON), &itemIDs) - ItemNameByID = make([]string, 876+1) - for i, v := range itemIDs { - ItemNameByID[v.ProtocolID] = i - } -} - -// Generate with follow steps: -// java -cp minecraft_server.1.15.jar net.minecraft.data.Main --all -// {reports/registries.json}.minecraft:block.entries -var itemIDsJSON = `{ - "minecraft:air": { - "protocol_id": 0 - }, - "minecraft:stone": { - "protocol_id": 1 - }, - "minecraft:granite": { - "protocol_id": 2 - }, - "minecraft:polished_granite": { - "protocol_id": 3 - }, - "minecraft:diorite": { - "protocol_id": 4 - }, - "minecraft:polished_diorite": { - "protocol_id": 5 - }, - "minecraft:andesite": { - "protocol_id": 6 - }, - "minecraft:polished_andesite": { - "protocol_id": 7 - }, - "minecraft:grass_block": { - "protocol_id": 8 - }, - "minecraft:dirt": { - "protocol_id": 9 - }, - "minecraft:coarse_dirt": { - "protocol_id": 10 - }, - "minecraft:podzol": { - "protocol_id": 11 - }, - "minecraft:cobblestone": { - "protocol_id": 12 - }, - "minecraft:oak_planks": { - "protocol_id": 13 - }, - "minecraft:spruce_planks": { - "protocol_id": 14 - }, - "minecraft:birch_planks": { - "protocol_id": 15 - }, - "minecraft:jungle_planks": { - "protocol_id": 16 - }, - "minecraft:acacia_planks": { - "protocol_id": 17 - }, - "minecraft:dark_oak_planks": { - "protocol_id": 18 - }, - "minecraft:oak_sapling": { - "protocol_id": 19 - }, - "minecraft:spruce_sapling": { - "protocol_id": 20 - }, - "minecraft:birch_sapling": { - "protocol_id": 21 - }, - "minecraft:jungle_sapling": { - "protocol_id": 22 - }, - "minecraft:acacia_sapling": { - "protocol_id": 23 - }, - "minecraft:dark_oak_sapling": { - "protocol_id": 24 - }, - "minecraft:bedrock": { - "protocol_id": 25 - }, - "minecraft:water": { - "protocol_id": 26 - }, - "minecraft:lava": { - "protocol_id": 27 - }, - "minecraft:sand": { - "protocol_id": 28 - }, - "minecraft:red_sand": { - "protocol_id": 29 - }, - "minecraft:gravel": { - "protocol_id": 30 - }, - "minecraft:gold_ore": { - "protocol_id": 31 - }, - "minecraft:iron_ore": { - "protocol_id": 32 - }, - "minecraft:coal_ore": { - "protocol_id": 33 - }, - "minecraft:oak_log": { - "protocol_id": 34 - }, - "minecraft:spruce_log": { - "protocol_id": 35 - }, - "minecraft:birch_log": { - "protocol_id": 36 - }, - "minecraft:jungle_log": { - "protocol_id": 37 - }, - "minecraft:acacia_log": { - "protocol_id": 38 - }, - "minecraft:dark_oak_log": { - "protocol_id": 39 - }, - "minecraft:stripped_spruce_log": { - "protocol_id": 40 - }, - "minecraft:stripped_birch_log": { - "protocol_id": 41 - }, - "minecraft:stripped_jungle_log": { - "protocol_id": 42 - }, - "minecraft:stripped_acacia_log": { - "protocol_id": 43 - }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 44 - }, - "minecraft:stripped_oak_log": { - "protocol_id": 45 - }, - "minecraft:oak_wood": { - "protocol_id": 46 - }, - "minecraft:spruce_wood": { - "protocol_id": 47 - }, - "minecraft:birch_wood": { - "protocol_id": 48 - }, - "minecraft:jungle_wood": { - "protocol_id": 49 - }, - "minecraft:acacia_wood": { - "protocol_id": 50 - }, - "minecraft:dark_oak_wood": { - "protocol_id": 51 - }, - "minecraft:stripped_oak_wood": { - "protocol_id": 52 - }, - "minecraft:stripped_spruce_wood": { - "protocol_id": 53 - }, - "minecraft:stripped_birch_wood": { - "protocol_id": 54 - }, - "minecraft:stripped_jungle_wood": { - "protocol_id": 55 - }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 56 - }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 57 - }, - "minecraft:oak_leaves": { - "protocol_id": 58 - }, - "minecraft:spruce_leaves": { - "protocol_id": 59 - }, - "minecraft:birch_leaves": { - "protocol_id": 60 - }, - "minecraft:jungle_leaves": { - "protocol_id": 61 - }, - "minecraft:acacia_leaves": { - "protocol_id": 62 - }, - "minecraft:dark_oak_leaves": { - "protocol_id": 63 - }, - "minecraft:sponge": { - "protocol_id": 64 - }, - "minecraft:wet_sponge": { - "protocol_id": 65 - }, - "minecraft:glass": { - "protocol_id": 66 - }, - "minecraft:lapis_ore": { - "protocol_id": 67 - }, - "minecraft:lapis_block": { - "protocol_id": 68 - }, - "minecraft:dispenser": { - "protocol_id": 69 - }, - "minecraft:sandstone": { - "protocol_id": 70 - }, - "minecraft:chiseled_sandstone": { - "protocol_id": 71 - }, - "minecraft:cut_sandstone": { - "protocol_id": 72 - }, - "minecraft:note_block": { - "protocol_id": 73 - }, - "minecraft:white_bed": { - "protocol_id": 74 - }, - "minecraft:orange_bed": { - "protocol_id": 75 - }, - "minecraft:magenta_bed": { - "protocol_id": 76 - }, - "minecraft:light_blue_bed": { - "protocol_id": 77 - }, - "minecraft:yellow_bed": { - "protocol_id": 78 - }, - "minecraft:lime_bed": { - "protocol_id": 79 - }, - "minecraft:pink_bed": { - "protocol_id": 80 - }, - "minecraft:gray_bed": { - "protocol_id": 81 - }, - "minecraft:light_gray_bed": { - "protocol_id": 82 - }, - "minecraft:cyan_bed": { - "protocol_id": 83 - }, - "minecraft:purple_bed": { - "protocol_id": 84 - }, - "minecraft:blue_bed": { - "protocol_id": 85 - }, - "minecraft:brown_bed": { - "protocol_id": 86 - }, - "minecraft:green_bed": { - "protocol_id": 87 - }, - "minecraft:red_bed": { - "protocol_id": 88 - }, - "minecraft:black_bed": { - "protocol_id": 89 - }, - "minecraft:powered_rail": { - "protocol_id": 90 - }, - "minecraft:detector_rail": { - "protocol_id": 91 - }, - "minecraft:sticky_piston": { - "protocol_id": 92 - }, - "minecraft:cobweb": { - "protocol_id": 93 - }, - "minecraft:grass": { - "protocol_id": 94 - }, - "minecraft:fern": { - "protocol_id": 95 - }, - "minecraft:dead_bush": { - "protocol_id": 96 - }, - "minecraft:seagrass": { - "protocol_id": 97 - }, - "minecraft:tall_seagrass": { - "protocol_id": 98 - }, - "minecraft:piston": { - "protocol_id": 99 - }, - "minecraft:piston_head": { - "protocol_id": 100 - }, - "minecraft:white_wool": { - "protocol_id": 101 - }, - "minecraft:orange_wool": { - "protocol_id": 102 - }, - "minecraft:magenta_wool": { - "protocol_id": 103 - }, - "minecraft:light_blue_wool": { - "protocol_id": 104 - }, - "minecraft:yellow_wool": { - "protocol_id": 105 - }, - "minecraft:lime_wool": { - "protocol_id": 106 - }, - "minecraft:pink_wool": { - "protocol_id": 107 - }, - "minecraft:gray_wool": { - "protocol_id": 108 - }, - "minecraft:light_gray_wool": { - "protocol_id": 109 - }, - "minecraft:cyan_wool": { - "protocol_id": 110 - }, - "minecraft:purple_wool": { - "protocol_id": 111 - }, - "minecraft:blue_wool": { - "protocol_id": 112 - }, - "minecraft:brown_wool": { - "protocol_id": 113 - }, - "minecraft:green_wool": { - "protocol_id": 114 - }, - "minecraft:red_wool": { - "protocol_id": 115 - }, - "minecraft:black_wool": { - "protocol_id": 116 - }, - "minecraft:moving_piston": { - "protocol_id": 117 - }, - "minecraft:dandelion": { - "protocol_id": 118 - }, - "minecraft:poppy": { - "protocol_id": 119 - }, - "minecraft:blue_orchid": { - "protocol_id": 120 - }, - "minecraft:allium": { - "protocol_id": 121 - }, - "minecraft:azure_bluet": { - "protocol_id": 122 - }, - "minecraft:red_tulip": { - "protocol_id": 123 - }, - "minecraft:orange_tulip": { - "protocol_id": 124 - }, - "minecraft:white_tulip": { - "protocol_id": 125 - }, - "minecraft:pink_tulip": { - "protocol_id": 126 - }, - "minecraft:oxeye_daisy": { - "protocol_id": 127 - }, - "minecraft:cornflower": { - "protocol_id": 128 - }, - "minecraft:wither_rose": { - "protocol_id": 129 - }, - "minecraft:lily_of_the_valley": { - "protocol_id": 130 - }, - "minecraft:brown_mushroom": { - "protocol_id": 131 - }, - "minecraft:red_mushroom": { - "protocol_id": 132 - }, - "minecraft:gold_block": { - "protocol_id": 133 - }, - "minecraft:iron_block": { - "protocol_id": 134 - }, - "minecraft:bricks": { - "protocol_id": 135 - }, - "minecraft:tnt": { - "protocol_id": 136 - }, - "minecraft:bookshelf": { - "protocol_id": 137 - }, - "minecraft:mossy_cobblestone": { - "protocol_id": 138 - }, - "minecraft:obsidian": { - "protocol_id": 139 - }, - "minecraft:torch": { - "protocol_id": 140 - }, - "minecraft:wall_torch": { - "protocol_id": 141 - }, - "minecraft:fire": { - "protocol_id": 142 - }, - "minecraft:spawner": { - "protocol_id": 143 - }, - "minecraft:oak_stairs": { - "protocol_id": 144 - }, - "minecraft:chest": { - "protocol_id": 145 - }, - "minecraft:redstone_wire": { - "protocol_id": 146 - }, - "minecraft:diamond_ore": { - "protocol_id": 147 - }, - "minecraft:diamond_block": { - "protocol_id": 148 - }, - "minecraft:crafting_table": { - "protocol_id": 149 - }, - "minecraft:wheat": { - "protocol_id": 150 - }, - "minecraft:farmland": { - "protocol_id": 151 - }, - "minecraft:furnace": { - "protocol_id": 152 - }, - "minecraft:oak_sign": { - "protocol_id": 153 - }, - "minecraft:spruce_sign": { - "protocol_id": 154 - }, - "minecraft:birch_sign": { - "protocol_id": 155 - }, - "minecraft:acacia_sign": { - "protocol_id": 156 - }, - "minecraft:jungle_sign": { - "protocol_id": 157 - }, - "minecraft:dark_oak_sign": { - "protocol_id": 158 - }, - "minecraft:oak_door": { - "protocol_id": 159 - }, - "minecraft:ladder": { - "protocol_id": 160 - }, - "minecraft:rail": { - "protocol_id": 161 - }, - "minecraft:cobblestone_stairs": { - "protocol_id": 162 - }, - "minecraft:oak_wall_sign": { - "protocol_id": 163 - }, - "minecraft:spruce_wall_sign": { - "protocol_id": 164 - }, - "minecraft:birch_wall_sign": { - "protocol_id": 165 - }, - "minecraft:acacia_wall_sign": { - "protocol_id": 166 - }, - "minecraft:jungle_wall_sign": { - "protocol_id": 167 - }, - "minecraft:dark_oak_wall_sign": { - "protocol_id": 168 - }, - "minecraft:lever": { - "protocol_id": 169 - }, - "minecraft:stone_pressure_plate": { - "protocol_id": 170 - }, - "minecraft:iron_door": { - "protocol_id": 171 - }, - "minecraft:oak_pressure_plate": { - "protocol_id": 172 - }, - "minecraft:spruce_pressure_plate": { - "protocol_id": 173 - }, - "minecraft:birch_pressure_plate": { - "protocol_id": 174 - }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 175 - }, - "minecraft:acacia_pressure_plate": { - "protocol_id": 176 - }, - "minecraft:dark_oak_pressure_plate": { - "protocol_id": 177 - }, - "minecraft:redstone_ore": { - "protocol_id": 178 - }, - "minecraft:redstone_torch": { - "protocol_id": 179 - }, - "minecraft:redstone_wall_torch": { - "protocol_id": 180 - }, - "minecraft:stone_button": { - "protocol_id": 181 - }, - "minecraft:snow": { - "protocol_id": 182 - }, - "minecraft:ice": { - "protocol_id": 183 - }, - "minecraft:snow_block": { - "protocol_id": 184 - }, - "minecraft:cactus": { - "protocol_id": 185 - }, - "minecraft:clay": { - "protocol_id": 186 - }, - "minecraft:sugar_cane": { - "protocol_id": 187 - }, - "minecraft:jukebox": { - "protocol_id": 188 - }, - "minecraft:oak_fence": { - "protocol_id": 189 - }, - "minecraft:pumpkin": { - "protocol_id": 190 - }, - "minecraft:netherrack": { - "protocol_id": 191 - }, - "minecraft:soul_sand": { - "protocol_id": 192 - }, - "minecraft:glowstone": { - "protocol_id": 193 - }, - "minecraft:nether_portal": { - "protocol_id": 194 - }, - "minecraft:carved_pumpkin": { - "protocol_id": 195 - }, - "minecraft:jack_o_lantern": { - "protocol_id": 196 - }, - "minecraft:cake": { - "protocol_id": 197 - }, - "minecraft:repeater": { - "protocol_id": 198 - }, - "minecraft:white_stained_glass": { - "protocol_id": 199 - }, - "minecraft:orange_stained_glass": { - "protocol_id": 200 - }, - "minecraft:magenta_stained_glass": { - "protocol_id": 201 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 202 - }, - "minecraft:yellow_stained_glass": { - "protocol_id": 203 - }, - "minecraft:lime_stained_glass": { - "protocol_id": 204 - }, - "minecraft:pink_stained_glass": { - "protocol_id": 205 - }, - "minecraft:gray_stained_glass": { - "protocol_id": 206 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 207 - }, - "minecraft:cyan_stained_glass": { - "protocol_id": 208 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 209 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 210 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 211 - }, - "minecraft:green_stained_glass": { - "protocol_id": 212 - }, - "minecraft:red_stained_glass": { - "protocol_id": 213 - }, - "minecraft:black_stained_glass": { - "protocol_id": 214 - }, - "minecraft:oak_trapdoor": { - "protocol_id": 215 - }, - "minecraft:spruce_trapdoor": { - "protocol_id": 216 - }, - "minecraft:birch_trapdoor": { - "protocol_id": 217 - }, - "minecraft:jungle_trapdoor": { - "protocol_id": 218 - }, - "minecraft:acacia_trapdoor": { - "protocol_id": 219 - }, - "minecraft:dark_oak_trapdoor": { - "protocol_id": 220 - }, - "minecraft:stone_bricks": { - "protocol_id": 221 - }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 222 - }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 223 - }, - "minecraft:chiseled_stone_bricks": { - "protocol_id": 224 - }, - "minecraft:infested_stone": { - "protocol_id": 225 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 226 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 227 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 228 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 229 - }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 230 - }, - "minecraft:brown_mushroom_block": { - "protocol_id": 231 - }, - "minecraft:red_mushroom_block": { - "protocol_id": 232 - }, - "minecraft:mushroom_stem": { - "protocol_id": 233 - }, - "minecraft:iron_bars": { - "protocol_id": 234 - }, - "minecraft:glass_pane": { - "protocol_id": 235 - }, - "minecraft:melon": { - "protocol_id": 236 - }, - "minecraft:attached_pumpkin_stem": { - "protocol_id": 237 - }, - "minecraft:attached_melon_stem": { - "protocol_id": 238 - }, - "minecraft:pumpkin_stem": { - "protocol_id": 239 - }, - "minecraft:melon_stem": { - "protocol_id": 240 - }, - "minecraft:vine": { - "protocol_id": 241 - }, - "minecraft:oak_fence_gate": { - "protocol_id": 242 - }, - "minecraft:brick_stairs": { - "protocol_id": 243 - }, - "minecraft:stone_brick_stairs": { - "protocol_id": 244 - }, - "minecraft:mycelium": { - "protocol_id": 245 - }, - "minecraft:lily_pad": { - "protocol_id": 246 - }, - "minecraft:nether_bricks": { - "protocol_id": 247 - }, - "minecraft:nether_brick_fence": { - "protocol_id": 248 - }, - "minecraft:nether_brick_stairs": { - "protocol_id": 249 - }, - "minecraft:nether_wart": { - "protocol_id": 250 - }, - "minecraft:enchanting_table": { - "protocol_id": 251 - }, - "minecraft:brewing_stand": { - "protocol_id": 252 - }, - "minecraft:cauldron": { - "protocol_id": 253 - }, - "minecraft:end_portal": { - "protocol_id": 254 - }, - "minecraft:end_portal_frame": { - "protocol_id": 255 - }, - "minecraft:end_stone": { - "protocol_id": 256 - }, - "minecraft:dragon_egg": { - "protocol_id": 257 - }, - "minecraft:redstone_lamp": { - "protocol_id": 258 - }, - "minecraft:cocoa": { - "protocol_id": 259 - }, - "minecraft:sandstone_stairs": { - "protocol_id": 260 - }, - "minecraft:emerald_ore": { - "protocol_id": 261 - }, - "minecraft:ender_chest": { - "protocol_id": 262 - }, - "minecraft:tripwire_hook": { - "protocol_id": 263 - }, - "minecraft:tripwire": { - "protocol_id": 264 - }, - "minecraft:emerald_block": { - "protocol_id": 265 - }, - "minecraft:spruce_stairs": { - "protocol_id": 266 - }, - "minecraft:birch_stairs": { - "protocol_id": 267 - }, - "minecraft:jungle_stairs": { - "protocol_id": 268 - }, - "minecraft:command_block": { - "protocol_id": 269 - }, - "minecraft:beacon": { - "protocol_id": 270 - }, - "minecraft:cobblestone_wall": { - "protocol_id": 271 - }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 272 - }, - "minecraft:flower_pot": { - "protocol_id": 273 - }, - "minecraft:potted_oak_sapling": { - "protocol_id": 274 - }, - "minecraft:potted_spruce_sapling": { - "protocol_id": 275 - }, - "minecraft:potted_birch_sapling": { - "protocol_id": 276 - }, - "minecraft:potted_jungle_sapling": { - "protocol_id": 277 - }, - "minecraft:potted_acacia_sapling": { - "protocol_id": 278 - }, - "minecraft:potted_dark_oak_sapling": { - "protocol_id": 279 - }, - "minecraft:potted_fern": { - "protocol_id": 280 - }, - "minecraft:potted_dandelion": { - "protocol_id": 281 - }, - "minecraft:potted_poppy": { - "protocol_id": 282 - }, - "minecraft:potted_blue_orchid": { - "protocol_id": 283 - }, - "minecraft:potted_allium": { - "protocol_id": 284 - }, - "minecraft:potted_azure_bluet": { - "protocol_id": 285 - }, - "minecraft:potted_red_tulip": { - "protocol_id": 286 - }, - "minecraft:potted_orange_tulip": { - "protocol_id": 287 - }, - "minecraft:potted_white_tulip": { - "protocol_id": 288 - }, - "minecraft:potted_pink_tulip": { - "protocol_id": 289 - }, - "minecraft:potted_oxeye_daisy": { - "protocol_id": 290 - }, - "minecraft:potted_cornflower": { - "protocol_id": 291 - }, - "minecraft:potted_lily_of_the_valley": { - "protocol_id": 292 - }, - "minecraft:potted_wither_rose": { - "protocol_id": 293 - }, - "minecraft:potted_red_mushroom": { - "protocol_id": 294 - }, - "minecraft:potted_brown_mushroom": { - "protocol_id": 295 - }, - "minecraft:potted_dead_bush": { - "protocol_id": 296 - }, - "minecraft:potted_cactus": { - "protocol_id": 297 - }, - "minecraft:carrots": { - "protocol_id": 298 - }, - "minecraft:potatoes": { - "protocol_id": 299 - }, - "minecraft:oak_button": { - "protocol_id": 300 - }, - "minecraft:spruce_button": { - "protocol_id": 301 - }, - "minecraft:birch_button": { - "protocol_id": 302 - }, - "minecraft:jungle_button": { - "protocol_id": 303 - }, - "minecraft:acacia_button": { - "protocol_id": 304 - }, - "minecraft:dark_oak_button": { - "protocol_id": 305 - }, - "minecraft:skeleton_skull": { - "protocol_id": 306 - }, - "minecraft:skeleton_wall_skull": { - "protocol_id": 307 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 308 - }, - "minecraft:wither_skeleton_wall_skull": { - "protocol_id": 309 - }, - "minecraft:zombie_head": { - "protocol_id": 310 - }, - "minecraft:zombie_wall_head": { - "protocol_id": 311 - }, - "minecraft:player_head": { - "protocol_id": 312 - }, - "minecraft:player_wall_head": { - "protocol_id": 313 - }, - "minecraft:creeper_head": { - "protocol_id": 314 - }, - "minecraft:creeper_wall_head": { - "protocol_id": 315 - }, - "minecraft:dragon_head": { - "protocol_id": 316 - }, - "minecraft:dragon_wall_head": { - "protocol_id": 317 - }, - "minecraft:anvil": { - "protocol_id": 318 - }, - "minecraft:chipped_anvil": { - "protocol_id": 319 - }, - "minecraft:damaged_anvil": { - "protocol_id": 320 - }, - "minecraft:trapped_chest": { - "protocol_id": 321 - }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 322 - }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 323 - }, - "minecraft:comparator": { - "protocol_id": 324 - }, - "minecraft:daylight_detector": { - "protocol_id": 325 - }, - "minecraft:redstone_block": { - "protocol_id": 326 - }, - "minecraft:nether_quartz_ore": { - "protocol_id": 327 - }, - "minecraft:hopper": { - "protocol_id": 328 - }, - "minecraft:quartz_block": { - "protocol_id": 329 - }, - "minecraft:chiseled_quartz_block": { - "protocol_id": 330 - }, - "minecraft:quartz_pillar": { - "protocol_id": 331 - }, - "minecraft:quartz_stairs": { - "protocol_id": 332 - }, - "minecraft:activator_rail": { - "protocol_id": 333 - }, - "minecraft:dropper": { - "protocol_id": 334 - }, - "minecraft:white_terracotta": { - "protocol_id": 335 - }, - "minecraft:orange_terracotta": { - "protocol_id": 336 - }, - "minecraft:magenta_terracotta": { - "protocol_id": 337 - }, - "minecraft:light_blue_terracotta": { - "protocol_id": 338 - }, - "minecraft:yellow_terracotta": { - "protocol_id": 339 - }, - "minecraft:lime_terracotta": { - "protocol_id": 340 - }, - "minecraft:pink_terracotta": { - "protocol_id": 341 - }, - "minecraft:gray_terracotta": { - "protocol_id": 342 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 343 - }, - "minecraft:cyan_terracotta": { - "protocol_id": 344 - }, - "minecraft:purple_terracotta": { - "protocol_id": 345 - }, - "minecraft:blue_terracotta": { - "protocol_id": 346 - }, - "minecraft:brown_terracotta": { - "protocol_id": 347 - }, - "minecraft:green_terracotta": { - "protocol_id": 348 - }, - "minecraft:red_terracotta": { - "protocol_id": 349 - }, - "minecraft:black_terracotta": { - "protocol_id": 350 - }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 351 - }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 352 - }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 353 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 354 - }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 355 - }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 356 - }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 357 - }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 358 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 359 - }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 360 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 361 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 362 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 363 - }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 364 - }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 365 - }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 366 - }, - "minecraft:acacia_stairs": { - "protocol_id": 367 - }, - "minecraft:dark_oak_stairs": { - "protocol_id": 368 - }, - "minecraft:slime_block": { - "protocol_id": 369 - }, - "minecraft:barrier": { - "protocol_id": 370 - }, - "minecraft:iron_trapdoor": { - "protocol_id": 371 - }, - "minecraft:prismarine": { - "protocol_id": 372 - }, - "minecraft:prismarine_bricks": { - "protocol_id": 373 - }, - "minecraft:dark_prismarine": { - "protocol_id": 374 - }, - "minecraft:prismarine_stairs": { - "protocol_id": 375 - }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 376 - }, - "minecraft:dark_prismarine_stairs": { - "protocol_id": 377 - }, - "minecraft:prismarine_slab": { - "protocol_id": 378 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 379 - }, - "minecraft:dark_prismarine_slab": { - "protocol_id": 380 - }, - "minecraft:sea_lantern": { - "protocol_id": 381 - }, - "minecraft:hay_block": { - "protocol_id": 382 - }, - "minecraft:white_carpet": { - "protocol_id": 383 - }, - "minecraft:orange_carpet": { - "protocol_id": 384 - }, - "minecraft:magenta_carpet": { - "protocol_id": 385 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 386 - }, - "minecraft:yellow_carpet": { - "protocol_id": 387 - }, - "minecraft:lime_carpet": { - "protocol_id": 388 - }, - "minecraft:pink_carpet": { - "protocol_id": 389 - }, - "minecraft:gray_carpet": { - "protocol_id": 390 - }, - "minecraft:light_gray_carpet": { - "protocol_id": 391 - }, - "minecraft:cyan_carpet": { - "protocol_id": 392 - }, - "minecraft:purple_carpet": { - "protocol_id": 393 - }, - "minecraft:blue_carpet": { - "protocol_id": 394 - }, - "minecraft:brown_carpet": { - "protocol_id": 395 - }, - "minecraft:green_carpet": { - "protocol_id": 396 - }, - "minecraft:red_carpet": { - "protocol_id": 397 - }, - "minecraft:black_carpet": { - "protocol_id": 398 - }, - "minecraft:terracotta": { - "protocol_id": 399 - }, - "minecraft:coal_block": { - "protocol_id": 400 - }, - "minecraft:packed_ice": { - "protocol_id": 401 - }, - "minecraft:sunflower": { - "protocol_id": 402 - }, - "minecraft:lilac": { - "protocol_id": 403 - }, - "minecraft:rose_bush": { - "protocol_id": 404 - }, - "minecraft:peony": { - "protocol_id": 405 - }, - "minecraft:tall_grass": { - "protocol_id": 406 - }, - "minecraft:large_fern": { - "protocol_id": 407 - }, - "minecraft:white_banner": { - "protocol_id": 408 - }, - "minecraft:orange_banner": { - "protocol_id": 409 - }, - "minecraft:magenta_banner": { - "protocol_id": 410 - }, - "minecraft:light_blue_banner": { - "protocol_id": 411 - }, - "minecraft:yellow_banner": { - "protocol_id": 412 - }, - "minecraft:lime_banner": { - "protocol_id": 413 - }, - "minecraft:pink_banner": { - "protocol_id": 414 - }, - "minecraft:gray_banner": { - "protocol_id": 415 - }, - "minecraft:light_gray_banner": { - "protocol_id": 416 - }, - "minecraft:cyan_banner": { - "protocol_id": 417 - }, - "minecraft:purple_banner": { - "protocol_id": 418 - }, - "minecraft:blue_banner": { - "protocol_id": 419 - }, - "minecraft:brown_banner": { - "protocol_id": 420 - }, - "minecraft:green_banner": { - "protocol_id": 421 - }, - "minecraft:red_banner": { - "protocol_id": 422 - }, - "minecraft:black_banner": { - "protocol_id": 423 - }, - "minecraft:white_wall_banner": { - "protocol_id": 424 - }, - "minecraft:orange_wall_banner": { - "protocol_id": 425 - }, - "minecraft:magenta_wall_banner": { - "protocol_id": 426 - }, - "minecraft:light_blue_wall_banner": { - "protocol_id": 427 - }, - "minecraft:yellow_wall_banner": { - "protocol_id": 428 - }, - "minecraft:lime_wall_banner": { - "protocol_id": 429 - }, - "minecraft:pink_wall_banner": { - "protocol_id": 430 - }, - "minecraft:gray_wall_banner": { - "protocol_id": 431 - }, - "minecraft:light_gray_wall_banner": { - "protocol_id": 432 - }, - "minecraft:cyan_wall_banner": { - "protocol_id": 433 - }, - "minecraft:purple_wall_banner": { - "protocol_id": 434 - }, - "minecraft:blue_wall_banner": { - "protocol_id": 435 - }, - "minecraft:brown_wall_banner": { - "protocol_id": 436 - }, - "minecraft:green_wall_banner": { - "protocol_id": 437 - }, - "minecraft:red_wall_banner": { - "protocol_id": 438 - }, - "minecraft:black_wall_banner": { - "protocol_id": 439 - }, - "minecraft:red_sandstone": { - "protocol_id": 440 - }, - "minecraft:chiseled_red_sandstone": { - "protocol_id": 441 - }, - "minecraft:cut_red_sandstone": { - "protocol_id": 442 - }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 443 - }, - "minecraft:oak_slab": { - "protocol_id": 444 - }, - "minecraft:spruce_slab": { - "protocol_id": 445 - }, - "minecraft:birch_slab": { - "protocol_id": 446 - }, - "minecraft:jungle_slab": { - "protocol_id": 447 - }, - "minecraft:acacia_slab": { - "protocol_id": 448 - }, - "minecraft:dark_oak_slab": { - "protocol_id": 449 - }, - "minecraft:stone_slab": { - "protocol_id": 450 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 451 - }, - "minecraft:sandstone_slab": { - "protocol_id": 452 - }, - "minecraft:cut_sandstone_slab": { - "protocol_id": 453 - }, - "minecraft:petrified_oak_slab": { - "protocol_id": 454 - }, - "minecraft:cobblestone_slab": { - "protocol_id": 455 - }, - "minecraft:brick_slab": { - "protocol_id": 456 - }, - "minecraft:stone_brick_slab": { - "protocol_id": 457 - }, - "minecraft:nether_brick_slab": { - "protocol_id": 458 - }, - "minecraft:quartz_slab": { - "protocol_id": 459 - }, - "minecraft:red_sandstone_slab": { - "protocol_id": 460 - }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 461 - }, - "minecraft:purpur_slab": { - "protocol_id": 462 - }, - "minecraft:smooth_stone": { - "protocol_id": 463 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 464 - }, - "minecraft:smooth_quartz": { - "protocol_id": 465 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 466 - }, - "minecraft:spruce_fence_gate": { - "protocol_id": 467 - }, - "minecraft:birch_fence_gate": { - "protocol_id": 468 - }, - "minecraft:jungle_fence_gate": { - "protocol_id": 469 - }, - "minecraft:acacia_fence_gate": { - "protocol_id": 470 - }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 471 - }, - "minecraft:spruce_fence": { - "protocol_id": 472 - }, - "minecraft:birch_fence": { - "protocol_id": 473 - }, - "minecraft:jungle_fence": { - "protocol_id": 474 - }, - "minecraft:acacia_fence": { - "protocol_id": 475 - }, - "minecraft:dark_oak_fence": { - "protocol_id": 476 - }, - "minecraft:spruce_door": { - "protocol_id": 477 - }, - "minecraft:birch_door": { - "protocol_id": 478 - }, - "minecraft:jungle_door": { - "protocol_id": 479 - }, - "minecraft:acacia_door": { - "protocol_id": 480 - }, - "minecraft:dark_oak_door": { - "protocol_id": 481 - }, - "minecraft:end_rod": { - "protocol_id": 482 - }, - "minecraft:chorus_plant": { - "protocol_id": 483 - }, - "minecraft:chorus_flower": { - "protocol_id": 484 - }, - "minecraft:purpur_block": { - "protocol_id": 485 - }, - "minecraft:purpur_pillar": { - "protocol_id": 486 - }, - "minecraft:purpur_stairs": { - "protocol_id": 487 - }, - "minecraft:end_stone_bricks": { - "protocol_id": 488 - }, - "minecraft:beetroots": { - "protocol_id": 489 - }, - "minecraft:grass_path": { - "protocol_id": 490 - }, - "minecraft:end_gateway": { - "protocol_id": 491 - }, - "minecraft:repeating_command_block": { - "protocol_id": 492 - }, - "minecraft:chain_command_block": { - "protocol_id": 493 - }, - "minecraft:frosted_ice": { - "protocol_id": 494 - }, - "minecraft:magma_block": { - "protocol_id": 495 - }, - "minecraft:nether_wart_block": { - "protocol_id": 496 - }, - "minecraft:red_nether_bricks": { - "protocol_id": 497 - }, - "minecraft:bone_block": { - "protocol_id": 498 - }, - "minecraft:structure_void": { - "protocol_id": 499 - }, - "minecraft:observer": { - "protocol_id": 500 - }, - "minecraft:shulker_box": { - "protocol_id": 501 - }, - "minecraft:white_shulker_box": { - "protocol_id": 502 - }, - "minecraft:orange_shulker_box": { - "protocol_id": 503 - }, - "minecraft:magenta_shulker_box": { - "protocol_id": 504 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 505 - }, - "minecraft:yellow_shulker_box": { - "protocol_id": 506 - }, - "minecraft:lime_shulker_box": { - "protocol_id": 507 - }, - "minecraft:pink_shulker_box": { - "protocol_id": 508 - }, - "minecraft:gray_shulker_box": { - "protocol_id": 509 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 510 - }, - "minecraft:cyan_shulker_box": { - "protocol_id": 511 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 512 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 513 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 514 - }, - "minecraft:green_shulker_box": { - "protocol_id": 515 - }, - "minecraft:red_shulker_box": { - "protocol_id": 516 - }, - "minecraft:black_shulker_box": { - "protocol_id": 517 - }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 518 - }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 519 - }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 520 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 521 - }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 522 - }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 523 - }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 524 - }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 525 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 526 - }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 527 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 528 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 529 - }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 530 - }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 531 - }, - "minecraft:red_glazed_terracotta": { - "protocol_id": 532 - }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 533 - }, - "minecraft:white_concrete": { - "protocol_id": 534 - }, - "minecraft:orange_concrete": { - "protocol_id": 535 - }, - "minecraft:magenta_concrete": { - "protocol_id": 536 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 537 - }, - "minecraft:yellow_concrete": { - "protocol_id": 538 - }, - "minecraft:lime_concrete": { - "protocol_id": 539 - }, - "minecraft:pink_concrete": { - "protocol_id": 540 - }, - "minecraft:gray_concrete": { - "protocol_id": 541 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 542 - }, - "minecraft:cyan_concrete": { - "protocol_id": 543 - }, - "minecraft:purple_concrete": { - "protocol_id": 544 - }, - "minecraft:blue_concrete": { - "protocol_id": 545 - }, - "minecraft:brown_concrete": { - "protocol_id": 546 - }, - "minecraft:green_concrete": { - "protocol_id": 547 - }, - "minecraft:red_concrete": { - "protocol_id": 548 - }, - "minecraft:black_concrete": { - "protocol_id": 549 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 550 - }, - "minecraft:orange_concrete_powder": { - "protocol_id": 551 - }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 552 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 553 - }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 554 - }, - "minecraft:lime_concrete_powder": { - "protocol_id": 555 - }, - "minecraft:pink_concrete_powder": { - "protocol_id": 556 - }, - "minecraft:gray_concrete_powder": { - "protocol_id": 557 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 558 - }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 559 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 560 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 561 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 562 - }, - "minecraft:green_concrete_powder": { - "protocol_id": 563 - }, - "minecraft:red_concrete_powder": { - "protocol_id": 564 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 565 - }, - "minecraft:kelp": { - "protocol_id": 566 - }, - "minecraft:kelp_plant": { - "protocol_id": 567 - }, - "minecraft:dried_kelp_block": { - "protocol_id": 568 - }, - "minecraft:turtle_egg": { - "protocol_id": 569 - }, - "minecraft:dead_tube_coral_block": { - "protocol_id": 570 - }, - "minecraft:dead_brain_coral_block": { - "protocol_id": 571 - }, - "minecraft:dead_bubble_coral_block": { - "protocol_id": 572 - }, - "minecraft:dead_fire_coral_block": { - "protocol_id": 573 - }, - "minecraft:dead_horn_coral_block": { - "protocol_id": 574 - }, - "minecraft:tube_coral_block": { - "protocol_id": 575 - }, - "minecraft:brain_coral_block": { - "protocol_id": 576 - }, - "minecraft:bubble_coral_block": { - "protocol_id": 577 - }, - "minecraft:fire_coral_block": { - "protocol_id": 578 - }, - "minecraft:horn_coral_block": { - "protocol_id": 579 - }, - "minecraft:dead_tube_coral": { - "protocol_id": 580 - }, - "minecraft:dead_brain_coral": { - "protocol_id": 581 - }, - "minecraft:dead_bubble_coral": { - "protocol_id": 582 - }, - "minecraft:dead_fire_coral": { - "protocol_id": 583 - }, - "minecraft:dead_horn_coral": { - "protocol_id": 584 - }, - "minecraft:tube_coral": { - "protocol_id": 585 - }, - "minecraft:brain_coral": { - "protocol_id": 586 - }, - "minecraft:bubble_coral": { - "protocol_id": 587 - }, - "minecraft:fire_coral": { - "protocol_id": 588 - }, - "minecraft:horn_coral": { - "protocol_id": 589 - }, - "minecraft:dead_tube_coral_fan": { - "protocol_id": 590 - }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 591 - }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 592 - }, - "minecraft:dead_fire_coral_fan": { - "protocol_id": 593 - }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 594 - }, - "minecraft:tube_coral_fan": { - "protocol_id": 595 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 596 - }, - "minecraft:bubble_coral_fan": { - "protocol_id": 597 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 598 - }, - "minecraft:horn_coral_fan": { - "protocol_id": 599 - }, - "minecraft:dead_tube_coral_wall_fan": { - "protocol_id": 600 - }, - "minecraft:dead_brain_coral_wall_fan": { - "protocol_id": 601 - }, - "minecraft:dead_bubble_coral_wall_fan": { - "protocol_id": 602 - }, - "minecraft:dead_fire_coral_wall_fan": { - "protocol_id": 603 - }, - "minecraft:dead_horn_coral_wall_fan": { - "protocol_id": 604 - }, - "minecraft:tube_coral_wall_fan": { - "protocol_id": 605 - }, - "minecraft:brain_coral_wall_fan": { - "protocol_id": 606 - }, - "minecraft:bubble_coral_wall_fan": { - "protocol_id": 607 - }, - "minecraft:fire_coral_wall_fan": { - "protocol_id": 608 - }, - "minecraft:horn_coral_wall_fan": { - "protocol_id": 609 - }, - "minecraft:sea_pickle": { - "protocol_id": 610 - }, - "minecraft:blue_ice": { - "protocol_id": 611 - }, - "minecraft:conduit": { - "protocol_id": 612 - }, - "minecraft:bamboo_sapling": { - "protocol_id": 613 - }, - "minecraft:bamboo": { - "protocol_id": 614 - }, - "minecraft:potted_bamboo": { - "protocol_id": 615 - }, - "minecraft:void_air": { - "protocol_id": 616 - }, - "minecraft:cave_air": { - "protocol_id": 617 - }, - "minecraft:bubble_column": { - "protocol_id": 618 - }, - "minecraft:polished_granite_stairs": { - "protocol_id": 619 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 620 - }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 621 - }, - "minecraft:polished_diorite_stairs": { - "protocol_id": 622 - }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 623 - }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 624 - }, - "minecraft:stone_stairs": { - "protocol_id": 625 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 626 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 627 - }, - "minecraft:granite_stairs": { - "protocol_id": 628 - }, - "minecraft:andesite_stairs": { - "protocol_id": 629 - }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 630 - }, - "minecraft:polished_andesite_stairs": { - "protocol_id": 631 - }, - "minecraft:diorite_stairs": { - "protocol_id": 632 - }, - "minecraft:polished_granite_slab": { - "protocol_id": 633 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 634 - }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 635 - }, - "minecraft:polished_diorite_slab": { - "protocol_id": 636 - }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 637 - }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 638 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 639 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 640 - }, - "minecraft:granite_slab": { - "protocol_id": 641 - }, - "minecraft:andesite_slab": { - "protocol_id": 642 - }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 643 - }, - "minecraft:polished_andesite_slab": { - "protocol_id": 644 - }, - "minecraft:diorite_slab": { - "protocol_id": 645 - }, - "minecraft:brick_wall": { - "protocol_id": 646 - }, - "minecraft:prismarine_wall": { - "protocol_id": 647 - }, - "minecraft:red_sandstone_wall": { - "protocol_id": 648 - }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 649 - }, - "minecraft:granite_wall": { - "protocol_id": 650 - }, - "minecraft:stone_brick_wall": { - "protocol_id": 651 - }, - "minecraft:nether_brick_wall": { - "protocol_id": 652 - }, - "minecraft:andesite_wall": { - "protocol_id": 653 - }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 654 - }, - "minecraft:sandstone_wall": { - "protocol_id": 655 - }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 656 - }, - "minecraft:diorite_wall": { - "protocol_id": 657 - }, - "minecraft:scaffolding": { - "protocol_id": 658 - }, - "minecraft:loom": { - "protocol_id": 659 - }, - "minecraft:barrel": { - "protocol_id": 660 - }, - "minecraft:smoker": { - "protocol_id": 661 - }, - "minecraft:blast_furnace": { - "protocol_id": 662 - }, - "minecraft:cartography_table": { - "protocol_id": 663 - }, - "minecraft:fletching_table": { - "protocol_id": 664 - }, - "minecraft:grindstone": { - "protocol_id": 665 - }, - "minecraft:lectern": { - "protocol_id": 666 - }, - "minecraft:smithing_table": { - "protocol_id": 667 - }, - "minecraft:stonecutter": { - "protocol_id": 668 - }, - "minecraft:bell": { - "protocol_id": 669 - }, - "minecraft:lantern": { - "protocol_id": 670 - }, - "minecraft:campfire": { - "protocol_id": 671 - }, - "minecraft:sweet_berry_bush": { - "protocol_id": 672 - }, - "minecraft:structure_block": { - "protocol_id": 673 - }, - "minecraft:jigsaw": { - "protocol_id": 674 - }, - "minecraft:composter": { - "protocol_id": 675 - }, - "minecraft:bee_nest": { - "protocol_id": 676 - }, - "minecraft:beehive": { - "protocol_id": 677 - }, - "minecraft:honey_block": { - "protocol_id": 678 - }, - "minecraft:honeycomb_block": { - "protocol_id": 679 - } -}` diff --git a/data/packetIDs.go b/data/packetIDs.go index cfc5dc3..28a5bc5 100644 --- a/data/packetIDs.go +++ b/data/packetIDs.go @@ -1,156 +1,173 @@ package data -// Clientbound packet IDs +//go:generate bash -c "go run gen_packetIDs.go > packetIDs.go" + +// This file is automatically generated by gen_packetIDs.go. DO NOT EDIT. + +// PktID represents a packet ID used in the minecraft protocol. +type PktID int32 + +// Valid PktID values. const ( - SpawnObject int32 = iota //0x00 - SpawnExperienceOrb - SpawnLivingEntity - SpawnPainting - SpawnPlayer - EntityAnimationClientbound - Statistics - AcknowledgePlayerDigging - BlockBreakAnimation - BlockEntityData - BlockAction - BlockChange - BossBar - ServerDifficulty - ChatMessageClientbound - TabComplete + // Clientbound packets for connections in the login state. + EncryptionBeginClientbound PktID = 0x01 + Success PktID = 0x02 + Compress PktID = 0x03 + LoginPluginRequest PktID = 0x04 + Disconnect PktID = 0x00 + // Serverbound packets for connections in the login state. + EncryptionBeginServerbound PktID = 0x01 + LoginPluginResponse PktID = 0x02 + LoginStart PktID = 0x00 - DeclareCommands //0x10 - WindowConfirmationClientbound - CloseWindowClientbound - WindowItems - WindowProperty - SetSlot - SetCooldown - PluginMessageClientbound - NamedSoundEffect - DisconnectPlay - EntityStatus - Explosion - UnloadChunk - ChangeGameState - OpenHorseWindow - KeepAliveClientbound + // Clientbound packets for connections in the play state. + EntityMetadata PktID = 0x44 + Teams PktID = 0x4c + BossBar PktID = 0x0c + Map PktID = 0x25 + Difficulty PktID = 0x0d + Camera PktID = 0x3e + WindowItems PktID = 0x13 + ScoreboardObjective PktID = 0x4a + RelEntityMove PktID = 0x27 + DeclareCommands PktID = 0x10 + CombatEvent PktID = 0x31 + SpawnEntityPainting PktID = 0x03 + EntityMoveLook PktID = 0x28 + ScoreboardScore PktID = 0x4d + Title PktID = 0x4f + CraftProgressBar PktID = 0x14 + NamedEntitySpawn PktID = 0x04 + ScoreboardDisplayObjective PktID = 0x43 + WorldParticles PktID = 0x22 + OpenWindow PktID = 0x2d + MultiBlockChange PktID = 0x3b + EntitySoundEffect PktID = 0x50 + Tags PktID = 0x5b + EntityUpdateAttributes PktID = 0x58 + NamedSoundEffect PktID = 0x18 + GameStateChange PktID = 0x1d + PlayerInfo PktID = 0x32 + Advancements PktID = 0x57 + Explosion PktID = 0x1b + KeepAliveClientbound PktID = 0x1f + MapChunk PktID = 0x20 + AttachEntity PktID = 0x45 + TradeList PktID = 0x26 + Respawn PktID = 0x39 + EntityDestroy PktID = 0x36 + Experience PktID = 0x48 + EntityLook PktID = 0x29 + OpenBook PktID = 0x2c + WorldEvent PktID = 0x21 + DeclareRecipes PktID = 0x5a + UnlockRecipes PktID = 0x35 + EntityEquipment PktID = 0x47 + EntityVelocity PktID = 0x46 + Animation PktID = 0x05 + UpdateViewDistance PktID = 0x41 + HeldItemSlotClientbound PktID = 0x3f + NbtQueryResponse PktID = 0x54 + Entity PktID = 0x2a + UpdateViewPosition PktID = 0x40 + AbilitiesClientbound PktID = 0x30 + OpenSignEntity PktID = 0x2e + SetSlot PktID = 0x15 + PlayerlistHeader PktID = 0x53 + ResourcePackSend PktID = 0x38 + SpawnEntityExperienceOrb PktID = 0x01 + Collect PktID = 0x55 + Statistics PktID = 0x06 + TileEntityData PktID = 0x09 + ChatClientbound PktID = 0x0e + WorldBorder PktID = 0x3d + UnloadChunk PktID = 0x1c + UpdateLight PktID = 0x23 + UpdateHealth PktID = 0x49 + RemoveEntityEffect PktID = 0x37 + KickDisconnect PktID = 0x19 + CustomPayloadClientbound PktID = 0x17 + SpawnPosition PktID = 0x42 + EntityStatus PktID = 0x1a + SpawnEntity PktID = 0x00 + SetPassengers PktID = 0x4b + FacePlayer PktID = 0x33 + TransactionClientbound PktID = 0x11 + BlockAction PktID = 0x0a + BlockBreakAnimation PktID = 0x08 + BlockChange PktID = 0x0b + Login PktID = 0x24 + VehicleMoveClientbound PktID = 0x2b + CraftRecipeResponse PktID = 0x2f + SetCooldown PktID = 0x16 + StopSound PktID = 0x52 + EntityEffect PktID = 0x59 + CloseWindowClientbound PktID = 0x12 + AcknowledgePlayerDigging PktID = 0x07 + SelectAdvancementTab PktID = 0x3c + EntityHeadRotation PktID = 0x3a + TabCompleteClientbound PktID = 0x0f + PositionClientbound PktID = 0x34 + OpenHorseWindow PktID = 0x1e + UpdateTime PktID = 0x4e + SpawnEntityLiving PktID = 0x02 + EntityTeleport PktID = 0x56 + SoundEffect PktID = 0x51 + // Serverbound packets for connections in the play state. + SetBeaconEffect PktID = 0x24 + UpdateStructureBlock PktID = 0x2a + EnchantItem PktID = 0x08 + Spectate PktID = 0x2d + ArmAnimation PktID = 0x2c + QueryEntityNbt PktID = 0x0d + Flying PktID = 0x15 + ResourcePackReceive PktID = 0x21 + BlockDig PktID = 0x1b + AbilitiesServerbound PktID = 0x1a + SelectTrade PktID = 0x23 + UpdateJigsawBlock PktID = 0x29 + SteerVehicle PktID = 0x1d + Settings PktID = 0x05 + SteerBoat PktID = 0x17 + UseItem PktID = 0x2f + TeleportConfirm PktID = 0x00 + PickItem PktID = 0x18 + CraftRecipeRequest PktID = 0x19 + Look PktID = 0x14 + TabCompleteServerbound PktID = 0x06 + AdvancementTab PktID = 0x22 + ClientCommand PktID = 0x04 + EntityAction PktID = 0x1c + PositionServerbound PktID = 0x12 + TransactionServerbound PktID = 0x07 + UpdateSign PktID = 0x2b + QueryBlockNbt PktID = 0x01 + PositionLook PktID = 0x13 + HeldItemSlotServerbound PktID = 0x25 + EditBook PktID = 0x0c + UpdateCommandBlock PktID = 0x26 + UseEntity PktID = 0x0e + GenerateStructure PktID = 0x0f + NameItem PktID = 0x20 + RecipeBook PktID = 0x1f + KeepAliveServerbound PktID = 0x10 + CustomPayloadServerbound PktID = 0x0b + VehicleMoveServerbound PktID = 0x16 + CloseWindowServerbound PktID = 0x0a + UpdateCommandBlockMinecart PktID = 0x27 + WindowClick PktID = 0x09 + ChatServerbound PktID = 0x03 + SetCreativeSlot PktID = 0x28 + DisplayedRecipe PktID = 0x1e + BlockPlace PktID = 0x2e + LockDifficulty PktID = 0x11 + SetDifficulty PktID = 0x02 - ChunkData //0x20 - Effect - Particle - UpdateLight - JoinGame - MapData - TradeList - EntityRelativeMove - EntityLookAndRelativeMove - EntityLook - Entity - VehicleMoveClientbound - OpenBook - OpenWindow - OpenSignEditor - CraftRecipeResponse + // Clientbound packets used to respond to ping/status requests. + ServerInfo PktID = 0x00 + PingClientbound PktID = 0x01 + // Serverbound packets used to ping or read server status. + PingStart PktID = 0x00 + PingServerbound PktID = 0x01 - PlayerAbilitiesClientbound //0x30 - CombatEvent - PlayerInfo - FacePlayer - PlayerPositionAndLookClientbound - UnlockRecipes - DestroyEntities - RemoveEntityEffect - ResourcePackSend - Respawn - EntityHeadLook - MultiBlockChange - SelectAdvancementTab - WorldBorder - Camera - HeldItemChangeClientbound - - UpdateViewPosition //0x40 - UpdateViewDistance - SpawnPosition - DisplayScoreboard - EntityMetadata - AttachEntity - EntityVelocity - EntityEquipment - SetExperience - UpdateHealth - ScoreboardObjective - SetPassengers - Teams - UpdateScore - TimeUpdate - Title - - EntitySoundEffect //0x50 - SoundEffect - StopSound - PlayerListHeaderAndFooter - NBTQueryResponse - CollectItem - EntityTeleport - Advancements - EntityProperties - EntityEffect - DeclareRecipes - Tags //0x5B -) - -// Serverbound packet IDs -const ( - TeleportConfirm int32 = iota //0x00 - QueryBlockNBT - SetDifficulty - ChatMessageServerbound - ClientStatus - ClientSettings - TabCompleteServerbound - ConfirmTransactionServerbound - ClickWindowButton - ClickWindow - CloseWindowServerbound - PluginMessageServerbound - EditBook - QueryEntityNBT - UseEntity - GenerateStructure - - KeepAliveServerbound //0x10 - LockDifficulty - PlayerPosition - PlayerPositionAndLookServerbound - PlayerLook - Player - VehicleMoveServerbound - SteerBoat - PickItem - CraftRecipeRequest - PlayerAbilitiesServerbound - PlayerDigging - EntityAction - SteerVehicle - DisplayedRecipe - RecipeBookData - - NameItem //0x20 - ResourcePackStatus - AdvancementTab - SelectTrade - SetBeaconEffect - HeldItemChangeServerbound - UpdateCommandBlock - UpdateCommandBlockMinecart - CreativeInventoryAction - UpdateJigsawBlock - UpdateStructureBlock - UpdateSign - AnimationServerbound - Spectate - PlayerBlockPlacement - UseItem //0x2F ) diff --git a/go.mod b/go.mod index d2206fc..a982652 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,8 @@ module github.com/Tnze/go-mc go 1.13 -require github.com/google/uuid v1.1.1 +require ( + github.com/beefsack/go-astar v0.0.0-20200827232313-4ecf9e304482 + github.com/google/uuid v1.1.1 + github.com/iancoleman/strcase v0.1.1 // indirect +) diff --git a/go.sum b/go.sum index b864886..ac2d898 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,6 @@ +github.com/beefsack/go-astar v0.0.0-20200827232313-4ecf9e304482 h1:p4g4uok3+r6Tg6fxXEQUAcMAX/WdK6WhkQW9s0jaT7k= +github.com/beefsack/go-astar v0.0.0-20200827232313-4ecf9e304482/go.mod h1:Cu3t5VeqE8kXjUBeNXWQprfuaP5UCIc5ggGjgMx9KFc= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/iancoleman/strcase v0.1.1 h1:2I+LRClyCYB7JgZb9U0k75VHUiQe9RfknRqDyUfzp7k= +github.com/iancoleman/strcase v0.1.1/go.mod h1:SK73tn/9oHe+/Y0h39VT4UCxmurVJkR5NA7kMEAOgSE= diff --git a/net/packet/packet.go b/net/packet/packet.go index 38912e7..0621ca7 100644 --- a/net/packet/packet.go +++ b/net/packet/packet.go @@ -5,6 +5,8 @@ import ( "compress/zlib" "fmt" "io" + + "github.com/Tnze/go-mc/data" ) // Packet define a net data package @@ -14,8 +16,8 @@ type Packet struct { } //Marshal generate Packet with the ID and Fields -func Marshal(ID int32, fields ...FieldEncoder) (pk Packet) { - pk.ID = ID +func Marshal(id data.PktID, fields ...FieldEncoder) (pk Packet) { + pk.ID = int32(id) for _, v := range fields { pk.Data = append(pk.Data, v.Encode()...) diff --git a/net/packet/types.go b/net/packet/types.go index cf2a1c7..6ec8a8d 100644 --- a/net/packet/types.go +++ b/net/packet/types.go @@ -2,10 +2,11 @@ package packet import ( "errors" - "github.com/google/uuid" "io" "math" + "github.com/google/uuid" + "github.com/Tnze/go-mc/nbt" ) @@ -364,6 +365,16 @@ func (p *Position) Decode(r DecodeReader) error { return nil } +//Decodes an Angle +func (b *Angle) Decode(r DecodeReader) error { + v, err := r.ReadByte() + if err != nil { + return err + } + *b = Angle(v) + return nil +} + //Encode a Float func (f Float) Encode() []byte { return Int(math.Float32bits(float32(f))).Encode() diff --git a/net/ptypes/chunk.go b/net/ptypes/chunk.go new file mode 100644 index 0000000..764a8f8 --- /dev/null +++ b/net/ptypes/chunk.go @@ -0,0 +1,128 @@ +// Package ptypes implements encoding and decoding for high-level packets. +package ptypes + +import ( + "bytes" + "fmt" + + "github.com/Tnze/go-mc/bot/world/entity" + "github.com/Tnze/go-mc/nbt" + pk "github.com/Tnze/go-mc/net/packet" +) + +// ChunkData is a clientbound packet which describes a chunk. +type ChunkData struct { + X, Z pk.Int + FullChunk pk.Boolean + PrimaryBitMask pk.VarInt + Heightmaps struct{} + Biomes biomesData + Data chunkData + BlockEntities blockEntities +} + +func (p *ChunkData) Decode(pkt pk.Packet) error { + r := bytes.NewReader(pkt.Data) + if err := p.X.Decode(r); err != nil { + return fmt.Errorf("X: %v", err) + } + if err := p.Z.Decode(r); err != nil { + return fmt.Errorf("Z: %v", err) + } + if err := p.FullChunk.Decode(r); err != nil { + return fmt.Errorf("full chunk: %v", err) + } + if err := p.PrimaryBitMask.Decode(r); err != nil { + return fmt.Errorf("bit mask: %v", err) + } + if err := (pk.NBT{V: &p.Heightmaps}).Decode(r); err != nil { + return fmt.Errorf("heightmaps: %v", err) + } + + // Biome data is only present for full chunks. + if p.FullChunk { + if err := p.Biomes.Decode(r); err != nil { + return fmt.Errorf("heightmaps: %v", err) + } + } + + if err := p.Data.Decode(r); err != nil { + return fmt.Errorf("data: %v", err) + } + if err := p.BlockEntities.Decode(r); err != nil { + return fmt.Errorf("block entities: %v", err) + } + return nil +} + +type biomesData struct { + data []pk.VarInt +} + +func (b *biomesData) Decode(r pk.DecodeReader) error { + var nobd pk.VarInt // Number of Biome Datums + if err := nobd.Decode(r); err != nil { + return err + } + b.data = make([]pk.VarInt, nobd) + + for i := 0; i < int(nobd); i++ { + var d pk.VarInt + if err := d.Decode(r); err != nil { + return err + } + b.data[i] = d + } + + return nil +} + +type chunkData []byte +type blockEntities []entity.BlockEntity + +// Decode implement net.packet.FieldDecoder +func (c *chunkData) Decode(r pk.DecodeReader) error { + var sz pk.VarInt + if err := sz.Decode(r); err != nil { + return err + } + *c = make([]byte, sz) + if _, err := r.Read(*c); err != nil { + return err + } + return nil +} + +// Decode implement net.packet.FieldDecoder +func (b *blockEntities) Decode(r pk.DecodeReader) error { + var sz pk.VarInt // Number of BlockEntities + if err := sz.Decode(r); err != nil { + return err + } + *b = make(blockEntities, sz) + decoder := nbt.NewDecoder(r) + for i := 0; i < int(sz); i++ { + if err := decoder.Decode(&(*b)[i]); err != nil { + return err + } + } + return nil +} + +// TileEntityData describes a change to a tile entity. +type TileEntityData struct { + Pos pk.Position + Action pk.UnsignedByte + Data entity.BlockEntity +} + +func (p *TileEntityData) Decode(pkt pk.Packet) error { + r := bytes.NewReader(pkt.Data) + if err := p.Pos.Decode(r); err != nil { + return fmt.Errorf("position: %v", err) + } + if err := p.Action.Decode(r); err != nil { + return fmt.Errorf("action: %v", err) + } + return nbt.NewDecoder(r).Decode(&p.Data) +} diff --git a/net/ptypes/entities.go b/net/ptypes/entities.go new file mode 100644 index 0000000..9d56105 --- /dev/null +++ b/net/ptypes/entities.go @@ -0,0 +1,95 @@ +package ptypes + +import pk "github.com/Tnze/go-mc/net/packet" + +// SpawnEntity is a clientbound packet used to spawn a non-mob entity. +type SpawnEntity struct { + ID pk.VarInt + UUID pk.UUID + Type pk.VarInt + X, Y, Z pk.Double + Pitch, Yaw pk.Angle + Data pk.Int + VelX, VelY, VelZ pk.Short +} + +func (p *SpawnEntity) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.UUID, &p.Type, + &p.X, &p.Y, &p.Z, &p.Pitch, &p.Yaw, + &p.Data, &p.VelX, &p.VelY, &p.VelZ) +} + +// SpawnPlayer is a clientbound packet used to describe a player entering +// visible range. +type SpawnPlayer struct { + ID pk.VarInt + UUID pk.UUID + X, Y, Z pk.Double + Yaw, Pitch pk.Angle +} + +func (p *SpawnPlayer) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.UUID, &p.X, &p.Y, &p.Z, &p.Yaw, &p.Pitch) +} + +// SpawnLivingEntity is a clientbound packet used to spawn a mob. +type SpawnLivingEntity struct { + ID pk.VarInt + UUID pk.UUID + Type pk.VarInt + X, Y, Z pk.Double + Yaw, Pitch pk.Angle + HeadPitch pk.Angle + VelX, VelY, VelZ pk.Short +} + +func (p *SpawnLivingEntity) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.UUID, &p.Type, + &p.X, &p.Y, &p.Z, &p.Yaw, &p.Pitch, + &p.HeadPitch, &p.VelX, &p.VelY, &p.VelZ) +} + +// EntityAnimationClientbound updates the animationf state of an entity. +type EntityAnimationClientbound struct { + ID pk.VarInt + Animation pk.UnsignedByte +} + +func (p *EntityAnimationClientbound) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.Animation) +} + +// EntityPosition is a clientbound packet used to update an entities position. +type EntityPosition struct { + ID pk.VarInt + X, Y, Z pk.Short // Deltas + OnGround pk.Boolean +} + +func (p *EntityPosition) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.X, &p.Y, &p.Z, &p.OnGround) +} + +// EntityPosition is a clientbound packet used to update an entities position +// and its rotation. +type EntityPositionLook struct { + ID pk.VarInt + X, Y, Z pk.Short // Deltas + Yaw, Pitch pk.Angle + OnGround pk.Boolean +} + +func (p *EntityPositionLook) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.X, &p.Y, &p.Z, &p.Yaw, &p.Pitch, &p.OnGround) +} + +// EntityRotation is a clientbound packet used to update an entities rotation. +type EntityRotation struct { + ID pk.VarInt + Yaw, Pitch pk.Angle + OnGround pk.Boolean +} + +func (p *EntityRotation) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.ID, &p.Yaw, &p.Pitch, &p.OnGround) +} diff --git a/net/ptypes/inventory.go b/net/ptypes/inventory.go new file mode 100644 index 0000000..3170aed --- /dev/null +++ b/net/ptypes/inventory.go @@ -0,0 +1,89 @@ +// Package ptypes implements encoding and decoding for high-level packets. +package ptypes + +import ( + "bytes" + "errors" + + "github.com/Tnze/go-mc/bot/world/entity" + "github.com/Tnze/go-mc/chat" + "github.com/Tnze/go-mc/data" + "github.com/Tnze/go-mc/nbt" + pk "github.com/Tnze/go-mc/net/packet" +) + +// SetSlot is a clientbound packet which configures an inventory slot. +// A window ID of -1 represents the cursor, and a window ID of 0 represents +// the players inventory. +type SetSlot struct { + WindowID pk.Byte + Slot pk.Short + SlotData entity.Slot +} + +func (p *SetSlot) Decode(pkt pk.Packet) error { + if err := pkt.Scan(&p.WindowID, &p.Slot, &p.SlotData); err != nil && !errors.Is(err, nbt.ErrEND) { + return err + } + return nil +} + +// WindowItems is a clientbound packet describing the contents of multiple +// inventory slots in a window/inventory. +type WindowItems struct { + WindowID pk.Byte + Slots []entity.Slot +} + +func (p *WindowItems) Decode(pkt pk.Packet) error { + r := bytes.NewReader(pkt.Data) + if err := p.WindowID.Decode(r); err != nil { + return err + } + + var count pk.Short + if err := count.Decode(r); err != nil { + return err + } + + p.Slots = make([]entity.Slot, int(count)) + for i := 0; i < int(count); i++ { + if err := p.Slots[i].Decode(r); err != nil && !errors.Is(err, nbt.ErrEND) { + return err + } + } + return nil +} + +// OpenWindow is a clientbound packet which opens an inventory. +type OpenWindow struct { + WindowID pk.VarInt + WindowType pk.VarInt + Title chat.Message +} + +func (p *OpenWindow) Decode(pkt pk.Packet) error { + if err := pkt.Scan(&p.WindowID, &p.WindowType, &p.Title); err != nil && !errors.Is(err, nbt.ErrEND) { + return err + } + return nil +} + +type ConfirmTransaction struct { + WindowID pk.Byte + ActionID pk.Short + Accepted pk.Boolean +} + +func (p *ConfirmTransaction) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.WindowID, &p.ActionID, &p.Accepted) +} + +func (p ConfirmTransaction) Encode() pk.Packet { + return pk.Marshal( + data.TransactionServerbound, + p.WindowID, + p.ActionID, + p.Accepted, + ) +} diff --git a/net/ptypes/misc.go b/net/ptypes/misc.go new file mode 100644 index 0000000..12f9fc4 --- /dev/null +++ b/net/ptypes/misc.go @@ -0,0 +1,91 @@ +package ptypes + +import ( + "io/ioutil" + + "github.com/Tnze/go-mc/chat" + "github.com/Tnze/go-mc/data" + pk "github.com/Tnze/go-mc/net/packet" +) + +// SoundEffect is a clientbound packet used to play a specific sound ID +// on the client. +type SoundEffect struct { + Sound pk.VarInt + Category pk.VarInt + X, Y, Z pk.Int + Volume, Pitch pk.Float +} + +func (p *SoundEffect) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.Sound, &p.Category, &p.X, &p.Y, &p.Z, &p.Volume, &p.Pitch) +} + +// NamedSoundEffect is a clientbound packet used to play a sound with the +// specified name on the client. +type NamedSoundEffect struct { + Sound pk.String + Category pk.VarInt + X, Y, Z pk.Int + Volume, Pitch pk.Float +} + +func (p *NamedSoundEffect) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.Sound, &p.Category, &p.X, &p.Y, &p.Z, &p.Volume, &p.Pitch) +} + +// ChatMessageClientbound represents a chat message forwarded by the server. +type ChatMessageClientbound struct { + S chat.Message + Pos pk.Byte + Sender pk.UUID +} + +func (p *ChatMessageClientbound) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.S, &p.Pos, &p.Sender) +} + +// UpdateHealth encodes player health/food information from the server. +type UpdateHealth struct { + Health pk.Float + Food pk.VarInt + FoodSaturation pk.Float +} + +func (p *UpdateHealth) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.Health, &p.Food, &p.FoodSaturation) +} + +// PluginData encodes the custom data encoded in a plugin message. +type PluginData []byte + +func (p PluginData) Encode() []byte { + return []byte(p) +} + +func (p *PluginData) Decode(r pk.DecodeReader) error { + data, err := ioutil.ReadAll(r) + if err != nil { + return err + } + *p = data + return nil +} + +// PluginMessage represents a packet with a customized payload. +type PluginMessage struct { + Channel pk.Identifier + Data PluginData +} + +func (p *PluginMessage) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.Channel, &p.Data) +} + +func (p *PluginMessage) Encode() pk.Packet { + return pk.Marshal( + data.CustomPayloadServerbound, + p.Channel, + p.Data, + ) +} diff --git a/net/ptypes/motion.go b/net/ptypes/motion.go new file mode 100644 index 0000000..da9463c --- /dev/null +++ b/net/ptypes/motion.go @@ -0,0 +1,87 @@ +// Package ptypes implements encoding and decoding for high-level packets. +package ptypes + +import ( + "github.com/Tnze/go-mc/data" + pk "github.com/Tnze/go-mc/net/packet" +) + +// PositionAndLookClientbound describes the location and orientation of +// the player. +type PositionAndLookClientbound struct { + X, Y, Z pk.Double + Yaw, Pitch pk.Float + Flags pk.Byte + TeleportID pk.VarInt +} + +func (p *PositionAndLookClientbound) RelativeX() bool { + return p.Flags&0x01 != 0 +} +func (p *PositionAndLookClientbound) RelativeY() bool { + return p.Flags&0x02 != 0 +} +func (p *PositionAndLookClientbound) RelativeZ() bool { + return p.Flags&0x04 != 0 +} +func (p *PositionAndLookClientbound) RelativeYaw() bool { + return p.Flags&0x08 != 0 +} +func (p *PositionAndLookClientbound) RelativePitch() bool { + return p.Flags&0x10 != 0 +} + +func (p *PositionAndLookClientbound) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.X, &p.Y, &p.Z, &p.Yaw, &p.Pitch, &p.Flags, &p.TeleportID) +} + +// PositionAndLookServerbound describes the location and orientation of +// the player. +type PositionAndLookServerbound struct { + X, Y, Z pk.Double + Yaw, Pitch pk.Float + OnGround pk.Boolean +} + +func (p PositionAndLookServerbound) Encode() pk.Packet { + return pk.Marshal( + data.PositionLook, + pk.Double(p.X), + pk.Double(p.Y), + pk.Double(p.Z), + pk.Float(p.Yaw), + pk.Float(p.Pitch), + pk.Boolean(p.OnGround), + ) +} + +// Position describes the position of the player. +type Position struct { + X, Y, Z pk.Double + OnGround pk.Boolean +} + +func (p Position) Encode() pk.Packet { + return pk.Marshal( + data.PositionServerbound, + pk.Double(p.X), + pk.Double(p.Y), + pk.Double(p.Z), + pk.Boolean(p.OnGround), + ) +} + +// Look describes the rotation of the player. +type Look struct { + Yaw, Pitch pk.Float + OnGround pk.Boolean +} + +func (p Look) Encode() pk.Packet { + return pk.Marshal( + data.Look, + pk.Float(p.Yaw), + pk.Float(p.Pitch), + pk.Boolean(p.OnGround), + ) +} diff --git a/net/ptypes/world.go b/net/ptypes/world.go new file mode 100644 index 0000000..477b102 --- /dev/null +++ b/net/ptypes/world.go @@ -0,0 +1,32 @@ +package ptypes + +import ( + pk "github.com/Tnze/go-mc/net/packet" +) + +// JoinGame encodes global/world information from the server. +type JoinGame struct { + PlayerEntity pk.Int + Hardcore pk.Boolean + Gamemode pk.UnsignedByte + PrevGamemode pk.UnsignedByte + WorldCount pk.VarInt + WorldNames pk.Identifier + //DimensionCodec pk.NBT + Dimension pk.Int + WorldName pk.Identifier + HashedSeed pk.Long + maxPlayers pk.VarInt // Now ignored + ViewDistance pk.VarInt + RDI pk.Boolean // Reduced Debug Info + ERS pk.Boolean // Enable respawn screen + IsDebug pk.Boolean + IsFlat pk.Boolean +} + +func (p *JoinGame) Decode(pkt pk.Packet) error { + return pkt.Scan(&p.PlayerEntity, &p.Hardcore, &p.Gamemode, &p.PrevGamemode, + &p.WorldCount, &p.WorldNames, &p.Dimension, + &p.WorldName, &p.HashedSeed, &p.maxPlayers, &p.ViewDistance, + &p.RDI, &p.ERS, &p.IsDebug, &p.IsFlat) +}